./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
// 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");
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]