From: Ivan Kohler Date: Thu, 16 Jan 2014 21:50:27 +0000 (-0800) Subject: fix agent self-editing of templates without other config, RT#26766 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=c5c8669beae1c3d377fce51bdcbf917994f66175;p=freeside.git fix agent self-editing of templates without other config, RT#26766 --- diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index 13f11fcd9..7729e06e4 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -734,11 +734,14 @@ $config_menu{'Network Monitoring'} = [ \%config_nms, '' ] if $curuser->access_right('Configure network monitoring') && $conf->config('network_monitoring_system') eq 'Torrus_Internal'; -if ( $curuser->access_right('Configuration' ) - || $curuser->access_right('Edit advertising sources') - || $curuser->access_right('Edit global advertising sources') +if ( $curuser->access_right([ 'Configuration', + 'View templates', + 'View global templates', + 'Edit templates', + 'Edit global templates', + ]) ) { - $config_menu{separator9} = ''; + $config_menu{separator9} = '' if keys %config_menu; $config_menu{'Miscellaneous'} = [ \%config_misc, '' ]; }