From 903dcd03b6bad9428a0bebf3509e09818b7d6d12 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Wed, 17 Feb 2016 12:47:56 +0000 Subject: [PATCH] Bug 15841 Circulation module's true value misplaced MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 1; was not at the end of the module as it should be to ensure compilation returns true return it to last line of code where it should be This patch fixes an ovious mistake. Signed-off-by: Marc Véron Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com (cherry picked from commit 5170c91f493aaa82d111a6a5215faf0ed53be72b) Signed-off-by: Julian Maurice --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 35651f2293..3aeb3b3e3f 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -3932,7 +3932,6 @@ sub GetAgeRestriction { return ($restriction_year); } -1; =head2 GetPendingOnSiteCheckouts @@ -4025,6 +4024,7 @@ sub GetTopIssues { return @$rows; } +1; __END__ =head1 AUTHOR -- 2.39.5