diff options
author | lpsolit%gmail.com <> | 2005-10-24 06:47:50 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-24 06:47:50 +0200 |
commit | 46c89016520cf272223cba52e704388fa94b4392 (patch) | |
tree | 7fabf7e470cb3609bd6bbdd40a1c23463a10e5e0 /relogin.cgi | |
parent | d0042bb7c9340ef4dd80b3abe3b2f45ed4bf862b (diff) | |
download | bugzilla-46c89016520cf272223cba52e704388fa94b4392.tar.gz bugzilla-46c89016520cf272223cba52e704388fa94b4392.tar.xz |
Bug 312307: Misused Throw*Error tags in code and templates - Patch by Dennis Melentyev <dennis.melentyev@infopulse.com.ua> r=LpSolit a=justdave
Diffstat (limited to 'relogin.cgi')
-rwxr-xr-x | relogin.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/relogin.cgi b/relogin.cgi index 58ac84769..a8ebd18f4 100755 --- a/relogin.cgi +++ b/relogin.cgi @@ -56,7 +56,7 @@ if ($action eq 'sudo') { # Do not try to start a new session if one is already in progress! if (defined(Bugzilla->sudoer)) { - ThrowUserError('sudo-in-progress', { target => $user->login }); + ThrowUserError('sudo_in_progress', { target => $user->login }); } # We may have been given a value to put into the field |