mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 16:33:17 +01:00
Fix missing category colors for app specific categories
r42030: Make sure global categories is infolog when in infolog. Other apps (tracker) may grab it first if we don't set it here
This commit is contained in:
parent
10703e36f0
commit
589a5e63cc
@ -336,7 +336,8 @@ class admin_categories
|
||||
{
|
||||
$filter['appname'] = $query['col_filter']['app'];
|
||||
}
|
||||
$cats = new categories($filter['owner'],$query['appname']);
|
||||
$old_cats = $GLOBALS['egw']->categories;
|
||||
$GLOBALS['egw']->categories = $cats = new categories($filter['owner'],$query['appname']);
|
||||
$globalcat = isset($GLOBALS['egw_info']['user']['apps']['admin']) ? 'all_no_acl' : $globalcat; // ignore acl only for admins
|
||||
$parent = $query['search'] ? false : 0;
|
||||
$rows = $cats->return_sorted_array($query['start'],false,$query['search'],$query['sort'],$query['order'],$globalcat,$parent,true,$filter);
|
||||
|
@ -91,6 +91,13 @@ class infolog_ui
|
||||
function __construct()
|
||||
{
|
||||
if ($GLOBALS['egw_info']['flags']['currentapp'] != 'infolog') translation::add_app('infolog');
|
||||
|
||||
// Make sure Global category is infolog - on first load, it may not be
|
||||
if($GLOBALS['egw_info']['flags']['currentapp'] == 'infolog' && !$GLOBALS['egw']->categories->app_name)
|
||||
{
|
||||
$GLOBALS['egw']->categories = new categories();
|
||||
}
|
||||
|
||||
$this->bo = new infolog_bo();
|
||||
|
||||
$this->tmpl = new etemplate();
|
||||
|
Loading…
Reference in New Issue
Block a user