koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/C4 Biblio.pm


From: Bruno Toumi
Subject: [Koha-cvs] koha/C4 Biblio.pm
Date: Fri, 11 May 2007 16:04:03 +0000

CVSROOT:        /cvsroot/koha
Module name:    koha
Changes by:     Bruno Toumi <btoumi>    07/05/11 16:04:03

Modified files:
        C4             : Biblio.pm 

Log message:
        bug fix:
        problem in  displayed label link  with subject in detail.tmpl
        ex: label random => rdom  

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&r1=1.204&r2=1.205

Patches:
Index: Biblio.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -b -r1.204 -r1.205
--- Biblio.pm   10 May 2007 14:45:15 -0000      1.204
+++ Biblio.pm   11 May 2007 16:04:03 -0000      1.205
@@ -33,7 +33,7 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.204 $' =~ /\d+/g; shift(@v).".".join( 
"_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.205 $' =~ /\d+/g; shift(@v).".".join( 
"_", map { sprintf "%03d", $_ } @v ); };
 
 @ISA = qw( Exporter );
 
@@ -1750,7 +1750,7 @@
         $label =~ s/su/ /g;
         $label =~ s/://g;
         $label =~ s/-to//g;
-        $label =~ s/and//g;
+        $label =~ s/ and //g;
         push @marcsubjcts,
           {
             label => $label,
@@ -3895,8 +3895,13 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.204 2007/05/10 14:45:15 tipaul Exp $
+# $Id: Biblio.pm,v 1.205 2007/05/11 16:04:03 btoumi Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.205  2007/05/11 16:04:03  btoumi
+# bug fix:
+# problem in  displayed label link  with subject in detail.tmpl
+# ex: label random => rdom
+#
 # Revision 1.204  2007/05/10 14:45:15  tipaul
 # Koha NoZebra :
 # - support for authorities




reply via email to

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