From 5cd7f81955630c192e72a27a1ee739b82b70ca30 Mon Sep 17 00:00:00 2001 From: Marc Date: Thu, 6 Oct 2016 14:37:14 +0200 Subject: [PATCH] Bug 17411 - Change exit 1 to exit 0 in acqui/basket.pl to prevent Internal Server Error Note: Same situation as in Bug 17403 To test: - Verifiy that code change makes sense. Note: Same situation as in Bug 17403 Signed-off-by: David Cook --- acqui/basket.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basket.pl b/acqui/basket.pl index f3bf36a..d452322 100755 --- a/acqui/basket.pl +++ b/acqui/basket.pl @@ -233,7 +233,7 @@ elsif ( $op eq 'ediorder' ) { || ( $basket->{branch} eq '' ); unless ($validtest) { print $query->redirect("../mainpage.pl"); - exit 1; + exit 0; # exit without error } } -- 2.1.4