Update on v1.1.5 (changes towards the next release)
Here's an update on the current version, which includes changes towards the next release still in development.
This commit is contained in:
parent
2d4fdc89e8
commit
a9bb787210
@ -10,7 +10,7 @@ Display the daily light from [https://git.vdm.dev/christian/daily-light](https:/
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
||||||
+ *Name*: [Dailylight](https://getbible.net)
|
+ *Name*: [Dailylight](https://getbible.net)
|
||||||
+ *First Build*: 3rd December, 2015
|
+ *First Build*: 3rd December, 2015
|
||||||
+ *Last Build*: 25th April, 2024
|
+ *Last Build*: 27th April, 2024
|
||||||
+ *Version*: 1.1.5
|
+ *Version*: 1.1.5
|
||||||
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
||||||
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<extension type="module" version="5.0" client="site" method="upgrade">
|
<extension type="module" version="5.0" client="site" method="upgrade">
|
||||||
<name>MOD_DAILYLIGHT</name>
|
<name>MOD_DAILYLIGHT</name>
|
||||||
<creationDate>25th April, 2024</creationDate>
|
<creationDate>27th April, 2024</creationDate>
|
||||||
<author>Llewellyn van der Merwe</author>
|
<author>Llewellyn van der Merwe</author>
|
||||||
<authorEmail>joomla@vdm.io</authorEmail>
|
<authorEmail>joomla@vdm.io</authorEmail>
|
||||||
<authorUrl>https://getbible.net</authorUrl>
|
<authorUrl>https://getbible.net</authorUrl>
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
// No direct access to this file
|
// No direct access to this file
|
||||||
defined('_JEXEC') or die('Restricted access');
|
defined('_JEXEC') or die('Restricted access');
|
||||||
|
use Joomla\CMS\Language\Text;
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
@ -51,7 +52,7 @@ defined('_JEXEC') or die('Restricted access');
|
|||||||
<?php if ($params->get('show_date_footer', 0) == 1): ?>
|
<?php if ($params->get('show_date_footer', 0) == 1): ?>
|
||||||
<?php echo $today->date_name; ?>
|
<?php echo $today->date_name; ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php echo JText::_('MOD_DAILYLIGHT_DAILY_LIGHT'); ?>
|
<?php echo Text::_('MOD_DAILYLIGHT_DAILY_LIGHT'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</a>
|
</a>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
@ -77,5 +78,5 @@ defined('_JEXEC') or die('Restricted access');
|
|||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php echo JText::_('MOD_DAILYLIGHT_THERE_WAS_AN_ERROR_LOADING_THE_DAILY_LIGHT_PLEASE_TRY_AGAIN_LATTER'); ?>
|
<?php echo Text::_('MOD_DAILYLIGHT_THERE_WAS_AN_ERROR_LOADING_THE_DAILY_LIGHT_PLEASE_TRY_AGAIN_LATTER'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user