]> git.mxchange.org Git - mailer.git/commitdiff
Even more code moved, thanks to km4l again. :)
authorquix0r <quix0r@mxchange.org>
Mon, 23 Aug 2010 13:08:20 +0000 (13:08 +0000)
committerquix0r <quix0r@mxchange.org>
Mon, 23 Aug 2010 13:08:20 +0000 (13:08 +0000)
DOCS/TODOs.txt
inc/databases.php
inc/filters.php

index 50b59eec88dc6a36ef6edd9d647da806e05398b8..2df58958b2e6f828ee392a1feb231b80c0b09b45 100644 (file)
@@ -35,9 +35,9 @@
 ./inc/extensions/ext-rallye.php:94:            // @TODO Fix config_rallye_prices to list_rallye_prices
 ./inc/extensions/ext-yoomedia.php:123:         // @TODO Can this be moved into a database table?
 ./inc/extensions/ext-yoomedia.php:56:// @TODO Only deprecated when 'ext-network' is ready! setExtensionDeprecated('Y');
-./inc/extensions-functions.php:152:    // @TODO Do we still need this? setExtensionUpdateNotes('');
-./inc/extensions-functions.php:434:// @TODO Change from ext_id to ext_name (not just even the variable! ;-) )
-./inc/extensions-functions.php:564:            // @TODO Extension is loaded, what next?
+./inc/extensions-functions.php:154:    // @TODO Do we still need this? setExtensionUpdateNotes('');
+./inc/extensions-functions.php:436:// @TODO Change from ext_id to ext_name (not just even the variable! ;-) )
+./inc/extensions-functions.php:566:            // @TODO Extension is loaded, what next?
 ./inc/functions.php:112:               // @TODO Extension 'msg' does not exist
 ./inc/functions.php:1496:                      // @TODO Move this SQL code into a function, let's say 'getTimestampFromPoolId($id) ?
 ./inc/functions.php:1519:                      // @TODO Rewrite this old lost code to a template
index 7b61176b96dec52b82d68ff080a0da4d2ab28a48..42a856ae3f41c51fadab13fb2850d587e5f34097 100644 (file)
@@ -96,10 +96,6 @@ $GLOBALS['replacer'] = array(
 // One day
 setConfigEntry('ONE_DAY', (60*60*24));
 
-// Timestamp for yesterday, today ... all at 00:00 am
-setConfigEntry('START_YDAY', makeTime(0, 0, 0, time() - getConfig('ONE_DAY')));
-setConfigEntry('START_TDAY', makeTime(0, 0, 0, time()));
-
 // HTTP-EOL
 setConfigEntry('HTTP_EOL', "\r\n");
 
index b68274ccb237e7a60d702e28552f2ea4917f5f17..9b9bb0e3e989ac5672bc47aeb2a77e6a014e5639 100644 (file)
@@ -1020,6 +1020,10 @@ function FILTER_CLEANUP_DNS_CACHE () {
 function FILTER_SET_CURRENT_DATE () {
        // Set current date
        setConfigEntry('CURRENT_DATE', generateDateTime(time(), '3'));
+
+       // Timestamp for yesterday, today ... all at 00:00 am
+       setConfigEntry('START_YDAY', makeTime(0, 0, 0, time() - getConfig('ONE_DAY')));
+       setConfigEntry('START_TDAY', makeTime(0, 0, 0, time()));
 }
 
 // [EOF]