mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
make the datefilter stay when filter by day is active (stick it with the sessiondata)
This commit is contained in:
parent
1754508ce9
commit
5ff54af20b
@ -242,7 +242,8 @@ class infolog_ui
|
||||
{
|
||||
$for = @$values['session_for'] ? $values['session_for'] : @$this->called_by;
|
||||
//echo "<p>$for: ".__METHOD__.'('.print_r($values,True).") called_by='$this->called_by', for='$for'<br />".function_backtrace()."</p>\n";
|
||||
$GLOBALS['egw']->session->appsession($for.'session_data','infolog',array(
|
||||
|
||||
$arrayToStore = array(
|
||||
'search' => $values['search'],
|
||||
'start' => $values['start'],
|
||||
'num_rows' => $values['num_rows'],
|
||||
@ -256,7 +257,13 @@ class infolog_ui
|
||||
'action_title' => $values['action_title'],
|
||||
'col_filter' => $values['col_filter'],
|
||||
'session_for' => $for
|
||||
));
|
||||
);
|
||||
if ($values['filter']=='bydate')
|
||||
{
|
||||
$arrayToStore['startdate'] = $values['startdate'];
|
||||
$arrayToStore['enddate'] = $values['enddate'];
|
||||
}
|
||||
$GLOBALS['egw']->session->appsession($for.'session_data','infolog',$arrayToStore);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user