fix missing ! when testing for permission on editing config
This commit is contained in:
parent
5b9bf48945
commit
7ec96655c3
|
@ -19,7 +19,7 @@
|
|||
//
|
||||
|
||||
// System edit actions
|
||||
if ( canEdit('System') ) {
|
||||
if ( !canEdit('System') ) {
|
||||
Warning("Must have System permissions to perform options actions");
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue