mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +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) {
|
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'));
|
$GLOBALS['phpgw']->redirect_link('/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'].'/index.php');
|
||||||
exit();
|
|
||||||
}
|
}
|
||||||
else {
|
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']->log->commit();
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->redirect_link('home/index.php');
|
$GLOBALS['phpgw']->redirect_link('/home/index.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isset($GLOBALS['phpgw_info']['nofooter']))
|
if(!isset($GLOBALS['phpgw_info']['nofooter']))
|
||||||
|
Loading…
Reference in New Issue
Block a user