Minor
Have not tried
PHP 5.2.X
Streber 0.0794
2007-01-14 16:41
- got to home / Changes
- Try preset "Today"
Use ListFilter_not_older() instead of custom filters. Value should be set in seconds from now into the past.
change
from home.inc.php line 489
case 'today':
$list->filters[]= new ListFilter_today(array(
'value'=>$f_settings['value'],
));
break;
into
case 'today':
$list->filters[]= new ListFilter_not_older(array(
'value'=> 24*60*60
));
break;
Something like this. Probably we could remove the current time of day from the value...