mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
until home works again, we use default_app from prefs (if set and not home) or calendar, if allowed, or first app found
This commit is contained in:
parent
62a559e498
commit
476f33af23
@ -96,6 +96,14 @@ if(@file_exists($tpl_info))
|
||||
}
|
||||
}
|
||||
|
||||
// until home works again, we redirect to default_app from prefs (if set and not home) or calendar, if allowed, or first app found
|
||||
if ($app == 'home')
|
||||
{
|
||||
$app = $GLOBALS['egw_info']['user']['preferences']['common']['default_app'];
|
||||
if (!$app || $app == 'home') $app = isset($GLOBALS['egw_info']['user']['apps']['calendar']) ? 'calendar' : key($GLOBALS['egw_info']['user']['apps']);
|
||||
egw::redirect(egw_framework::index($app, $app));
|
||||
}
|
||||
|
||||
if($app == 'home' && !$api_requested && !($windowed && $_GET['cd'] == 'yes' && !html::$ua_mobile))
|
||||
{
|
||||
if ($GLOBALS['egw_info']['server']['force_default_app'] && $GLOBALS['egw_info']['server']['force_default_app'] != 'user_choice')
|
||||
|
@ -894,6 +894,8 @@ abstract class egw_framework
|
||||
$apps = array();
|
||||
foreach($GLOBALS['egw_info']['user']['apps'] as $app => $data)
|
||||
{
|
||||
// disable home until we get it working again
|
||||
if ($app == 'home') continue;
|
||||
if (is_long($app))
|
||||
{
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user