Bug 20556: Marking ILL request as complete..
authorAndrew Isherwood <andrew.isherwood@ptfs-europe.com>
Tue, 10 Apr 2018 15:50:56 +0000 (16:50 +0100)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 20 Apr 2018 14:42:00 +0000 (11:42 -0300)
When marking a request as complete, the status is updated internally
then the user to redirected to the view of the request.

Although the redirect header is sent, there is no exit to indicate that
the program flow should stop. As a result, an attempt is made to render
the template, which fails.

This patch simply adds the missing exit.

TEST PLAN
---------

- Create an ILL request
- "Manage request" > "Confirm request"
- "Mark completed"
- TEST: Ensure that no error is written to the error log upon clicking
"Mark completed"

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

ill/ill-requests.pl

index 029fa49..47cfc97 100755 (executable)
@@ -264,6 +264,7 @@ sub handle_commit_maybe {
                 '/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id='.
                 $request->id
             );
+            exit;
         } else {
             # Redirect to a requests list view
             redirect_to_list();