koha-cvs
[Top][All Lists]
Advanced

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

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


From: Antoine Farnault
Subject: [Koha-cvs] koha/C4 Biblio.pm [rel_3_0]
Date: Wed, 28 Feb 2007 10:01:14 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        07/02/28 10:01:13

Modified files:
        C4             : Biblio.pm 

Log message:
        reporting bug fix from 2.2.7.1 to rel_3_0
        LOG was :
                        BUGFIX/improvement : limiting MARCsubject to 610 as 676 
is dewey, and is somewhere else

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.178.2.58&r2=1.178.2.59

Patches:
Index: Biblio.pm
===================================================================
RCS file: /sources/koha/koha/C4/Biblio.pm,v
retrieving revision 1.178.2.58
retrieving revision 1.178.2.59
diff -u -b -r1.178.2.58 -r1.178.2.59
--- Biblio.pm   5 Feb 2007 16:50:01 -0000       1.178.2.58
+++ Biblio.pm   28 Feb 2007 10:01:13 -0000      1.178.2.59
@@ -33,7 +33,7 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.178.2.58 $' =~ /\d+/g; 
shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.178.2.59 $' =~ /\d+/g; 
shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
 
 @ISA = qw( Exporter );
 
@@ -1580,7 +1580,7 @@
     }
     else {    # assume unimarc if not marc21
         $mintag = "600";
-        $maxtag = "619";
+        $maxtag = "611";
     }
 
     my @marcsubjcts;
@@ -3693,8 +3693,13 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.178.2.58 2007/02/05 16:50:01 toins Exp $
+# $Id: Biblio.pm,v 1.178.2.59 2007/02/28 10:01:13 toins Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.178.2.59  2007/02/28 10:01:13  toins
+# reporting bug fix from 2.2.7.1 to rel_3_0
+# LOG was :
+#              BUGFIX/improvement : limiting MARCsubject to 610 as 676 is 
dewey, and is somewhere else
+#
 # Revision 1.178.2.58  2007/02/05 16:50:01  toins
 # fix a mod_perl bug:
 # There was a global var modified into an internal function in 
{MARC|ISBD}detail.pl.




reply via email to

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