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:
Ralf Becker 2013-03-20 10:02:06 +00:00
parent 10703e36f0
commit 589a5e63cc
2 changed files with 9 additions and 1 deletions

View File

@ -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);

View File

@ -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();