Merge remote branch 'kc/new/bug_5649' into kcmaster
[koha.git] / C4 / Print.pm
index 582ecde..09c18bf 100644 (file)
@@ -13,11 +13,12 @@ package C4::Print;
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 use strict;
+#use warnings; FIXME - Bug 2505
 use C4::Context;
 use C4::Circulation;
 use C4::Members;
@@ -47,9 +48,7 @@ The functions in this module handle sending text to a printer.
 
 =head1 FUNCTIONS
 
-=over 2
-
-=item remoteprint
+=head2 remoteprint
 
   &remoteprint($items, $borrower);
 
@@ -167,19 +166,19 @@ EOF
     return $slip;
 }
 
-=item printslip
+=head2 printslip
 
   &printslip($borrowernumber)
 
-  print a slip for the given $borrowernumber
-  
+print a slip for the given $borrowernumber
+
 =cut
 
 #'
 sub printslip ($) {
-    my ( $borrowernumber ) = shift;
-    my ( $borrower ) = GetMemberDetails( $borrowernumber);
-       my ($countissues,$issueslist) = GetPendingIssues($borrowernumber); 
+    my $borrowernumber = shift;
+    my $borrower   = GetMemberDetails($borrowernumber);
+       my $issueslist = GetPendingIssues($borrowernumber); 
        foreach my $it (@$issueslist){
                $it->{'date_due'}=format_date($it->{'date_due'});
     }          
@@ -192,11 +191,9 @@ END { }    # module clean-up code here (global destructor)
 1;
 __END__
 
-=back
-
 =head1 AUTHOR
 
-Koha Developement team <info@koha.org>
+Koha Development Team <http://koha-community.org/>
 
 =head1 SEE ALSO