From 10501b1602fefac2006fd0ee669afc627bd40103 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 Signed-off-by: Jonathan Druart Amended patch: Remove unecessary comment --- acqui/basket.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basket.pl b/acqui/basket.pl index f3bf36a..ecc8f59 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; } } -- 2.8.1