View | Details | Raw Unified | Return to bug 13757
Collapse All | Expand All

(-)a/C4/Members/AttributeTypes.pm (-2 / +1 lines)
Lines 226-232 sub store { Link Here
226
        $sth = $dbh->prepare_cached("INSERT INTO borrower_attribute_types 
226
        $sth = $dbh->prepare_cached("INSERT INTO borrower_attribute_types 
227
                                        (description, repeatable, unique_id, opac_display, opac_editable, password_allowed,
227
                                        (description, repeatable, unique_id, opac_display, opac_editable, password_allowed,
228
                                         staff_searchable, authorised_value_category, display_checkout, category_code, class, code)
228
                                         staff_searchable, authorised_value_category, display_checkout, category_code, class, code)
229
                                        VALUES (?, ?, ?, ?, ?,
229
                                        VALUES (?, ?, ?, ?, ?, ?,
230
                                                ?, ?, ?, ?, ?, ?)");
230
                                                ?, ?, ?, ?, ?, ?)");
231
    }
231
    }
232
    $sth->bind_param(1, $self->{'description'});
232
    $sth->bind_param(1, $self->{'description'});
233
- 

Return to bug 13757