Lines 271-282
sub edit_attribute_type_form {
Link Here
|
271 |
category_description => $attr_type->category_description, |
271 |
category_description => $attr_type->category_description, |
272 |
); |
272 |
); |
273 |
|
273 |
|
274 |
my @patron_categories = Koha::Patron::Categories->search({}, {order_by => ['description']}); |
274 |
my $patron_categories = Koha::Patron::Categories->search({}, {order_by => ['description']}); |
275 |
$template->param( |
275 |
$template->param( |
276 |
attribute_type_form => 1, |
276 |
attribute_type_form => 1, |
277 |
edit_attribute_type => 1, |
277 |
edit_attribute_type => 1, |
278 |
confirm_op => 'edit_attribute_type_confirmed', |
278 |
confirm_op => 'edit_attribute_type_confirmed', |
279 |
categories => \@patron_categories, |
279 |
categories => $patron_categories, |
280 |
); |
280 |
); |
281 |
|
281 |
|
282 |
} |
282 |
} |
283 |
- |
|
|