diff options
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-x | sanitycheck.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi index b085feb9d..1c7ab284f 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -86,7 +86,7 @@ my $template = Bugzilla->template; # and restricting access to this installation's administrators (which # prevents users with a legitimate interest in Bugzilla integrity # from accessing the script). -UserInGroup("editbugs") +Bugzilla->user->in_group("editbugs") || ThrowUserError("auth_failure", {group => "editbugs", action => "run", object => "sanity_check"}); |