From 863a22e44d49481109c956b0a0533b6672e3ca93 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Thu, 16 Jan 2014 13:50:26 -0800 Subject: [PATCH] fix agent self-editing of templates without other config, RT#26766 --- httemplate/elements/menu.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index 5225cce30..99f5e1168 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -766,11 +766,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, '' ]; } -- 2.11.0