|
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 |
- |
|
|