koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/acqui.simple addbiblio.pl [rel_2_2]


From: Joshua Ferraro
Subject: [Koha-cvs] koha/acqui.simple addbiblio.pl [rel_2_2]
Date: Wed, 15 Mar 2006 05:34:15 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_2_2
Changes by:     Joshua Ferraro <address@hidden> 06/03/15 05:34:15

Modified files:
        acqui.simple   : addbiblio.pl 

Log message:
        fixing visibility flag: if ((<=-4)||(>=5)) { not in the editor unless 
exists
        r is added}

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/acqui.simple/addbiblio.pl.diff?only_with_tag=rel_2_2&tr1=1.52.2.29&tr2=1.52.2.30&r1=text&r2=text

Patches:
Index: koha/acqui.simple/addbiblio.pl
diff -u koha/acqui.simple/addbiblio.pl:1.52.2.29 
koha/acqui.simple/addbiblio.pl:1.52.2.30
--- koha/acqui.simple/addbiblio.pl:1.52.2.29    Wed Mar 15 05:08:07 2006
+++ koha/acqui.simple/addbiblio.pl      Wed Mar 15 05:34:15 2006
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: addbiblio.pl,v 1.52.2.29 2006/03/15 05:08:07 kados Exp $
+# $Id: addbiblio.pl,v 1.52.2.30 2006/03/15 05:34:15 kados Exp $
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -272,7 +272,7 @@
                                                next if (length $subfield !=1);
                                                next if 
($tagslib->{$tag}->{$subfield}->{tab} ne $tabloop);
                                                next if ($tag<10);
-                                               next if 
(($tagslib->{$tag}->{$subfield}->{hidden}<=-5) or 
($tagslib->{$tag}->{$subfield}->{hidden}>=5) ); #check for visibility flag
+                                               next if 
(($tagslib->{$tag}->{$subfield}->{hidden}<=-4) or 
($tagslib->{$tag}->{$subfield}->{hidden}>=5) ); #check for visibility flag
                                                next if 
(defined($field->subfield($subfield)));
                                                push(@subfields_data, 
&create_input($tag,$subfield,'',$i,$tabloop,$record,$authorised_values_sth));
                                                $i++;




reply via email to

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