[Koha-patches] [PATCH] [SIGNED-OFF] Bug #6082 - On aqbudgets.pl bug on the Statistic's combobox

Katrin Fischer Katrin.Fischer.83 at web.de
Thu Apr 7 11:59:22 CEST 2011


From: Alex Arnaud <alex.arnaud at biblibre.com>

Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
---
 C4/Koha.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/C4/Koha.pm b/C4/Koha.pm
index 0836669..95244bd 100644
--- a/C4/Koha.pm
+++ b/C4/Koha.pm
@@ -1051,7 +1051,7 @@ sub GetAuthorisedValueCategories {
     my $sth = $dbh->prepare("SELECT DISTINCT category FROM authorised_values ORDER BY category");
     $sth->execute;
     my @results;
-    while (my $category = $sth->fetchrow_array) {
+    while (defined (my $category  = $sth->fetchrow_array) ) {
         push @results, $category;
     }
     return \@results;
-- 
1.7.1



More information about the Koha-patches mailing list