diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-07-18 02:27:25 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-07-18 02:27:25 +0200 |
commit | d56069c56d0adec39a815e7592ac868dc847afb1 (patch) | |
tree | 1a2d30a9e506c584d6f06838af585a9435164cb2 /relogin.cgi | |
parent | Bug 662883: email_in.pl should ignore "out of the office" auto-reply emails (diff) | |
download | bugzilla-d56069c56d0adec39a815e7592ac868dc847afb1.tar.gz bugzilla-d56069c56d0adec39a815e7592ac868dc847afb1.tar.bz2 bugzilla-d56069c56d0adec39a815e7592ac868dc847afb1.zip |
Bug 670128: Missing explicit exit after calls to $cgi->redirect(), making the rest of the scripts to be executed
r=dkl a=LpSolit
Diffstat (limited to 'relogin.cgi')
-rwxr-xr-x | relogin.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/relogin.cgi b/relogin.cgi index 028f4ddb1..f6a410c05 100755 --- a/relogin.cgi +++ b/relogin.cgi @@ -45,6 +45,7 @@ my $target; if (!$action) { # redirect to index.cgi if no action is defined. print $cgi->redirect(correct_urlbase() . 'index.cgi'); + exit; } # prepare-sudo: Display the sudo information & login page elsif ($action eq 'prepare-sudo') { |