mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Don't warn about losing access for a new category
This commit is contained in:
parent
ec158c5e5c
commit
fe7e8ef9ac
@ -200,7 +200,17 @@ class admin_categories
|
||||
$sel_options['owner'] = array();
|
||||
|
||||
// User's category - add current value to be able to preserve owner
|
||||
if(!$content['id'] && $this->appname != 'admin') $content['owner'] = $GLOBALS['egw_info']['user']['account_id'];
|
||||
if(!$content['id'])
|
||||
{
|
||||
if($this->appname != 'admin')
|
||||
{
|
||||
$content['owner'] = $GLOBALS['egw_info']['user']['account_id'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$content['owner'] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if($content['owner'] > 0 )
|
||||
{
|
||||
@ -231,7 +241,7 @@ class admin_categories
|
||||
|
||||
egw_framework::validate_file('.','global_categories','admin');
|
||||
egw_framework::set_onload('$(document).ready(function() {
|
||||
cat_original_owner = [' . ($content['owner'] ? $content['owner'] : '0') .'];
|
||||
cat_original_owner = [' . ($content['owner'] ? $content['owner'] : $content['id'] ? '0' : '') .'];
|
||||
permission_prompt = \'' . lang('cat_permission_confirm').'\';
|
||||
});');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user