X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=C4%2FImages.pm;h=37b24179aa87d9087e284acd0fea21e9a3794429;hb=f45fc4d10b84dfbd8040d12484553db8c87ec45a;hp=8afc8fa294b763debcdf1387811217e77ff19bbb;hpb=0c40ff9f9814295fe27f52047bfbe4ef7b47e78b;p=koha.git diff --git a/C4/Images.pm b/C4/Images.pm index 8afc8fa294..37b24179aa 100644 --- a/C4/Images.pm +++ b/C4/Images.pm @@ -5,18 +5,18 @@ package C4::Images; # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY 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., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use warnings; @@ -25,12 +25,10 @@ use 5.010; use C4::Context; use GD; -use vars qw($debug $noimage $VERSION @ISA @EXPORT); +use vars qw($debug $noimage @ISA @EXPORT); BEGIN { - # set the version for version checking - $VERSION = 3.03; require Exporter; @ISA = qw(Exporter); @EXPORT = qw( @@ -102,7 +100,7 @@ sub RetrieveImage { my $dbh = C4::Context->dbh; my $query = -'SELECT mimetype, imagefile, thumbnail FROM biblioimages WHERE imagenumber = ?'; +'SELECT imagenumber, mimetype, imagefile, thumbnail FROM biblioimages WHERE imagenumber = ?'; my $sth = $dbh->prepare($query); $sth->execute($imagenumber); my $imagedata = $sth->fetchrow_hashref; @@ -131,16 +129,10 @@ sub ListImagesForBiblio { my $query = 'SELECT imagenumber FROM biblioimages WHERE biblionumber = ?'; my $sth = $dbh->prepare($query); $sth->execute($biblionumber); - warn "Database error!" if $sth->errstr; - if ( !$sth->errstr && $sth->rows > 0 ) { - while ( my $row = $sth->fetchrow_hashref ) { - push @imagenumbers, $row->{'imagenumber'}; - } - return @imagenumbers; - } - else { - return undef; + while ( my $row = $sth->fetchrow_hashref ) { + push @imagenumbers, $row->{'imagenumber'}; } + return @imagenumbers; } =head2 DelImage