koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/C4 Breeding.pm [rel_2_2]


From: Ryan Higgins
Subject: [Koha-cvs] koha/C4 Breeding.pm [rel_2_2]
Date: Tue, 10 Apr 2007 22:37:02 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_2_2
Changes by:     Ryan Higgins <rych>     07/04/10 22:37:02

Modified files:
        C4             : Breeding.pm 

Log message:
        bugfix: records without isbn or issn are reported as already existing 
in catalog and cannot be imported to reservoir

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Breeding.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.7.2.5&r2=1.7.2.6

Patches:
Index: Breeding.pm
===================================================================
RCS file: /sources/koha/koha/C4/Breeding.pm,v
retrieving revision 1.7.2.5
retrieving revision 1.7.2.6
diff -u -b -r1.7.2.5 -r1.7.2.6
--- Breeding.pm 29 Mar 2007 23:05:25 -0000      1.7.2.5
+++ Breeding.pm 10 Apr 2007 22:37:02 -0000      1.7.2.6
@@ -109,7 +109,7 @@
                        if ($oldbiblio->{isbn}) {
                                $searchisbn->execute($oldbiblio->{isbn});
                                ($biblioitemnumber) = $searchisbn->fetchrow;
-                       } else {
+                       } elsif ($oldbiblio->{issn}) {
                                $searchissn->execute($oldbiblio->{issn});
                                ($biblioitemnumber) = $searchissn->fetchrow;
                        }




reply via email to

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