Bug 6539 follow-up, fixing wrong indentation
authorPaul Poulain <paul.poulain@biblibre.com>
Wed, 1 Feb 2012 16:51:05 +0000 (17:51 +0100)
committerPaul Poulain <paul.poulain@biblibre.com>
Wed, 1 Feb 2012 16:51:05 +0000 (17:51 +0100)
C4/Search.pm

index 0600cb9..e86bb26 100644 (file)
@@ -2642,11 +2642,11 @@ sub z3950_search_args {
 
     if (defined $isbn && $isbn->is_valid)
     {
-    $bibrec = { isbn => $bibrec } if !ref $bibrec;
-}
-else {
-     $bibrec = { title => $bibrec } if !ref $bibrec;
-}
+        $bibrec = { isbn => $bibrec } if !ref $bibrec;
+    }
+    else {
+        $bibrec = { title => $bibrec } if !ref $bibrec;
+    }
     my $array = [];
     for my $field (qw/ lccn isbn issn title author dewey subject /)
     {