From 17a008370ba3f4d2f32eb577adbad78528b1d60e Mon Sep 17 00:00:00 2001 From: Jesse Weaver Date: Wed, 2 Sep 2015 17:54:04 -0600 Subject: [PATCH] Bug 13757: (followup) fix creation of patron attributes Signed-off-by: Aleisha --- C4/Members/AttributeTypes.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Members/AttributeTypes.pm b/C4/Members/AttributeTypes.pm index ad2ef22..487184e 100644 --- a/C4/Members/AttributeTypes.pm +++ b/C4/Members/AttributeTypes.pm @@ -217,7 +217,7 @@ sub store { $sth = $dbh->prepare_cached("INSERT INTO borrower_attribute_types (description, repeatable, unique_id, opac_display, opac_editable, staff_searchable, authorised_value_category, display_checkout, category_code, class, code) - VALUES (?, ?, ?, ?, + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"); } $sth->bind_param(1, $self->{'description'}); -- 2.10.1