X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=members%2Fpatronimage.pl;h=4f663d64cecdad9bbfc34e4581dc3e6f18afc691;hb=d3c565f12c5c9136588a17e6497d860f6c5e95ed;hp=e76d117adaa5310d3cd04f84657cfff13e9a48af;hpb=5278aa0ca4bb5110741b792b527725280a3ee902;p=koha_fer diff --git a/members/patronimage.pl b/members/patronimage.pl index e76d117ada..4f663d64ce 100755 --- a/members/patronimage.pl +++ b/members/patronimage.pl @@ -31,7 +31,7 @@ $|=1; my $DEBUG = 0; my $data = new CGI; -my $cardnumber; +my $borrowernumber; =head1 NAME @@ -39,24 +39,24 @@ patronimage.pl - Script for retrieving and formatting Koha patron images for dis =head1 SYNOPSIS - =head1 DESCRIPTION -This script, when called from within HTML and passed a valid patron cardnumber, will retrieve the image data associated with that cardnumber if one exists, format it in proper HTML format and pass it back to be displayed. +This script, when called from within HTML and passed a valid patron borrowernumber, will retrieve the image data associated with that borrowernumber if one exists, format it in proper HTML format and pass it back to be displayed. =cut -if ($data->param('crdnum')) { - $cardnumber = $data->param('crdnum'); +if ($data->param('borrowernumber')) { + $borrowernumber = $data->param('borrowernumber'); } else { - $cardnumber = shift; + $borrowernumber = shift; } -warn "Cardnumber passed in: $cardnumber" if $DEBUG; +warn "Borrowernumber passed in: $borrowernumber" if $DEBUG; -my ($imagedata, $dberror) = GetPatronImage($cardnumber); +my ($imagedata, $dberror) = GetPatronImage($borrowernumber); if ($dberror) { warn "Database Error!"; @@ -70,7 +70,7 @@ if ($imagedata) { print $data->header (-type => $imagedata->{'mimetype'}, -'Cache-Control' => 'no-store', -Content_Length => length ($imagedata->{'imagefile'})), $imagedata->{'imagefile'}; exit; } else { - warn "No image exists for $cardnumber"; + warn "No image exists for $borrowernumber"; exit; }