mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 16:29:22 +01:00
default Filter (for entering InfoLog) was not used
This commit is contained in:
parent
4e0a483462
commit
db4fc5004b
@ -154,6 +154,10 @@
|
|||||||
if (!is_array($values))
|
if (!is_array($values))
|
||||||
{
|
{
|
||||||
$values = array('nm' => $GLOBALS['phpgw']->session->appsession('session_data','infolog'));
|
$values = array('nm' => $GLOBALS['phpgw']->session->appsession('session_data','infolog'));
|
||||||
|
if (isset($_GET['filter']))
|
||||||
|
{
|
||||||
|
$values['nm']['filter'] = $_GET['filter']; // infolog/index.php sets defaultFilter that way
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -20,6 +20,9 @@
|
|||||||
);
|
);
|
||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=infolog.uiinfolog.index'));
|
$GLOBALS['phpgw']->redirect_link('/index.php',array(
|
||||||
|
'menuaction' => 'infolog.uiinfolog.index',
|
||||||
|
'filter' => $GLOBALS['phpgw_info']['user']['preferences']['infolog']['defaultFilter']
|
||||||
|
));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user