Bug 15841 Circulation module's true value misplaced
authorColin Campbell <colin.campbell@ptfs-europe.com>
Wed, 17 Feb 2016 12:47:56 +0000 (12:47 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Wed, 24 Feb 2016 02:52:17 +0000 (02:52 +0000)
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 <veron@veron.ch>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
C4/Circulation.pm

index f30b385..3bede51 100644 (file)
@@ -3942,7 +3942,6 @@ sub GetAgeRestriction {
     return ($restriction_year);
 }
 
-1;
 
 =head2 GetPendingOnSiteCheckouts
 
@@ -4035,6 +4034,7 @@ sub GetTopIssues {
     return @$rows;
 }
 
+1;
 __END__
 
 =head1 AUTHOR