[Top][All Lists]
[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: |
Thu, 04 Jan 2007 13:11:34 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_3_0
Changes by: paul poulain <tipaul> 07/01/04 13:11:34
Modified files:
C4 : Search.pm
Log message:
adding location to 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.38&r2=1.120.2.39
Patches:
Index: Search.pm
===================================================================
RCS file: /sources/koha/koha/C4/Search.pm,v
retrieving revision 1.120.2.38
retrieving revision 1.120.2.39
diff -u -b -r1.120.2.38 -r1.120.2.39
--- Search.pm 21 Dec 2006 15:35:17 -0000 1.120.2.38
+++ Search.pm 4 Jan 2007 13:11:34 -0000 1.120.2.39
@@ -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.38 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.120.2.39 $' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
@@ -951,6 +951,8 @@
}
$items->{ $item->{homebranch} }->{itemcallnumber} =
$item->{itemcallnumber};
+ $items->{ $item->{homebranch} }->{location} =
+ $item->{location};
}
} # notforloan, item level and biblioitem level
for my $key ( keys %$items ) {
- [Koha-cvs] koha/C4 Search.pm [rel_3_0],
paul poulain <=