mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
fixed wrong redirects to home
This commit is contained in:
parent
adaa4fb4a9
commit
d3577414bc
@ -98,11 +98,10 @@
|
||||
}
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] && !$hasupdates) {
|
||||
|
||||
Header('Location: ' . $GLOBALS['phpgw']->link('/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'].'/index.php'));
|
||||
exit();
|
||||
$GLOBALS['phpgw']->redirect_link('/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'].'/index.php');
|
||||
}
|
||||
else {
|
||||
Header('Location: ' . $GLOBALS['phpgw']->link('home/index.php'));
|
||||
$GLOBALS['phpgw']->redirect_link('/home/index.php');
|
||||
}
|
||||
|
||||
}
|
||||
@ -171,7 +170,7 @@
|
||||
$GLOBALS['phpgw']->log->commit();
|
||||
}
|
||||
|
||||
$GLOBALS['phpgw']->redirect_link('home/index.php');
|
||||
$GLOBALS['phpgw']->redirect_link('/home/index.php');
|
||||
}
|
||||
|
||||
if(!isset($GLOBALS['phpgw_info']['nofooter']))
|
||||
|
Loading…
Reference in New Issue
Block a user