X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=C4%2FPrint.pm;h=f8108161c2fb81605365fe74022e737920009a24;hb=99f686ea8323aa47eeb12ffb2c85cf5da0ad1d65;hp=2ba7584d2bf363418a84cabafc83bfde2f65c5a3;hpb=c8df6bdcc9fe2523a77c839270b31304d8e13ee5;p=koha_gimpoz diff --git a/C4/Print.pm b/C4/Print.pm index 2ba7584d2b..f8108161c2 100644 --- a/C4/Print.pm +++ b/C4/Print.pm @@ -79,7 +79,8 @@ sub remoteprint ($$) { # to have spaces in them). Or perhaps if $queue eq "" and # $env->{file} ne "", then that should mean "print to $env->{file}". if ( $queue eq "" || $queue eq 'nulllp' ) { - open( PRINTER, ">/tmp/kohaiss" ); + return; + #open( PRINTER, ">/tmp/kohaiss" ); } else { @@ -125,6 +126,10 @@ sub remoteprint ($$) { } sub printreserve { + + # FIXME - make useful + return; + my ( $branchname, $bordata, $itemdata ) = @_; my $printer = ''; (return) unless ( C4::Context->boolean_preference('printreserveslips') ); @@ -175,6 +180,9 @@ print a slip for the given $borrowernumber #' sub printslip ($) { + + #FIXME - make useful + my $borrowernumber = shift; my $borrower = GetMemberDetails($borrowernumber); my $issueslist = GetPendingIssues($borrowernumber);