Bug 8196: FIX for Bug 5742: All extended attributes are shown when editing a patron
[koha-ffzg.git] / C4 / Members / Attributes.pm
index b373c94..cde25d1 100644 (file)
@@ -77,12 +77,11 @@ sub GetBorrowerAttributes {
                  FROM borrower_attributes
                  JOIN borrower_attribute_types USING (code)
                  LEFT JOIN authorised_values ON (category = authorised_value_category AND attribute = authorised_value)
-                 WHERE 1";
-    $query .= "\nAND borrowernumber = ?" if $borrowernumber;
+                 WHERE borrowernumber = ?";
     $query .= "\nAND opac_display = 1" if $opac_only;
     $query .= "\nORDER BY code, attribute";
     my $sth = $dbh->prepare_cached($query);
-    $sth->execute($borrowernumber ? $borrowernumber : ());
+    $sth->execute($borrowernumber);
     my @results = ();
     while (my $row = $sth->fetchrow_hashref()) {
         push @results, {