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

(-)a/C4/Members/AttributeTypes.pm (-2 / +1 lines)
Lines 217-223 sub store { Link Here
217
        $sth = $dbh->prepare_cached("INSERT INTO borrower_attribute_types 
217
        $sth = $dbh->prepare_cached("INSERT INTO borrower_attribute_types 
218
                                        (description, repeatable, unique_id, opac_display, opac_editable,
218
                                        (description, repeatable, unique_id, opac_display, opac_editable,
219
                                         staff_searchable, authorised_value_category, display_checkout, category_code, class, code)
219
                                         staff_searchable, authorised_value_category, display_checkout, category_code, class, code)
220
                                        VALUES (?, ?, ?, ?,
220
                                        VALUES (?, ?, ?, ?, ?,
221
                                                ?, ?, ?, ?, ?, ?)");
221
                                                ?, ?, ?, ?, ?, ?)");
222
    }
222
    }
223
    $sth->bind_param(1, $self->{'description'});
223
    $sth->bind_param(1, $self->{'description'});
224
- 

Return to bug 13757