From 509f641cc1b4ecffd30b5af548928c9a85cefe80 Mon Sep 17 00:00:00 2001
From: Colin Campbell <colin.campbell@ptfs-europe.com>
Date: Wed, 17 Feb 2016 12:47:56 +0000
Subject: [PATCH] Bug 15841 Circulation module's true value misplaced

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
---
 C4/Circulation.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/C4/Circulation.pm b/C4/Circulation.pm
index f30b385..3bede51 100644
--- a/C4/Circulation.pm
+++ b/C4/Circulation.pm
@@ -3942,7 +3942,6 @@ sub GetAgeRestriction {
     return ($restriction_year);
 }
 
-1;
 
 =head2 GetPendingOnSiteCheckouts
 
@@ -4035,6 +4034,7 @@ sub GetTopIssues {
     return @$rows;
 }
 
+1;
 __END__
 
 =head1 AUTHOR
-- 
2.5.0