koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/C4 Search.pm [rel_3_0]


From: paul poulain
Subject: [Koha-cvs] koha/C4 Search.pm [rel_3_0]
Date: Wed, 10 Jan 2007 16:14:30 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     paul poulain <tipaul>   07/01/10 16:14:30

Modified files:
        C4             : Search.pm 

Log message:
        fix to show item location correctly in result list

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Search.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.120.2.40&r2=1.120.2.41

Patches:
Index: Search.pm
===================================================================
RCS file: /sources/koha/koha/C4/Search.pm,v
retrieving revision 1.120.2.40
retrieving revision 1.120.2.41
diff -u -b -r1.120.2.40 -r1.120.2.41
--- Search.pm   9 Jan 2007 14:22:31 -0000       1.120.2.40
+++ Search.pm   10 Jan 2007 16:14:30 -0000      1.120.2.41
@@ -25,7 +25,7 @@
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.120.2.40 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.120.2.41 $' =~ /\d+/g;
     shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
 };
 
@@ -965,7 +965,8 @@
                 branchname     => $branches{$key},
                 branchcode     => $key,
                 count          => $items->{$key}->{count},
-                itemcallnumber => $items->{$key}->{itemcallnumber}
+                itemcallnumber => $items->{$key}->{itemcallnumber},
+                location => $items->{$key}->{location},
             };
             push @items_loop, $this_item;
         }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]