koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/C4 Search.pm


From: Pierrick LE GALL
Subject: [Koha-cvs] koha/C4 Search.pm
Date: Mon, 06 Mar 2006 15:39:02 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         
Changes by:     Pierrick LE GALL <address@hidden>       06/03/06 15:39:02

Modified files:
        C4             : Search.pm 

Log message:
        typo fixed: a ";" was missing at the end of Zebra connection retrieving 
in
        C4::Search->get_record

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/Search.pm.diff?tr1=1.116&tr2=1.117&r1=text&r2=text

Patches:
Index: koha/C4/Search.pm
diff -u koha/C4/Search.pm:1.116 koha/C4/Search.pm:1.117
--- koha/C4/Search.pm:1.116     Sat Feb 25 22:47:37 2006
+++ koha/C4/Search.pm   Mon Mar  6 15:39:02 2006
@@ -30,7 +30,7 @@
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.116 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.117 $' =~ /\d+/g;
     shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
 };
 
@@ -105,7 +105,7 @@
     # pass in an id (biblionumber at this stage) and get back a MARC record
     my ($id) = @_;
     my $q;
-    my $Zconn = C4::Context->Zconn
+    my $Zconn = C4::Context->Zconn;
     my $raw;
     my $string = "identifier=$id";
     warn $string;




reply via email to

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