Replaced mktime() with time() call as per issue #36.
authoranuko <support@anuko.com>
Mon, 31 Jul 2017 22:00:02 +0000 (22:00 +0000)
committeranuko <support@anuko.com>
Mon, 31 Jul 2017 22:00:02 +0000 (22:00 +0000)
WEB-INF/templates/footer.tpl
cron.php

index be5b36d..ecf48d7 100644 (file)
@@ -12,7 +12,7 @@
       <br>
       <table cellspacing="0" cellpadding="4" width="100%" border="0">
         <tr>
-          <td align="center">&nbsp;Anuko Time Tracker 1.11.48.3654 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+          <td align="center">&nbsp;Anuko Time Tracker 1.11.48.3655 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
             <a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
             <a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
             <a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
index a0bf985..eb7965a 100644 (file)
--- a/cron.php
+++ b/cron.php
@@ -45,7 +45,7 @@ import('ttFavReportHelper');
 import('ttReportHelper');
 
 $mdb2 = getConnection();
-$now = mktime();
+$now = time();
 
  $sql = "select c.id, c.cron_spec, c.report_id, c.email, c.report_condition from tt_cron c
    left join tt_fav_reports fr on (c.report_id = fr.id)