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

(-)a/acqui/neworderempty.pl (-1 / +2 lines)
Lines 330-336 if (C4::Context->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) { Link Here
330
    $template->param(items => \@itemloop);
330
    $template->param(items => \@itemloop);
331
}
331
}
332
# Get the item types list, but only if item_level_itype is YES. Otherwise, it will be in the item, no need to display it in the biblio
332
# Get the item types list, but only if item_level_itype is YES. Otherwise, it will be in the item, no need to display it in the biblio
333
my @itemtypes = C4::ItemType->all unless C4::Context->preference('item-level_itypes');
333
my @itemtypes;
334
@itemtypes = C4::ItemType->all unless C4::Context->preference('item-level_itypes');
334
335
335
# fill template
336
# fill template
336
$template->param(
337
$template->param(
(-)a/t/00-testcritic.t (-2 / +1 lines)
Lines 16-22 my @all_koha_dirs = qw( acqui admin authorities basket C4 catalogue cataloguing Link Here
16
labels members misc offline_circ opac patroncards reports reserve reviews rotating_collections
16
labels members misc offline_circ opac patroncards reports reserve reviews rotating_collections
17
serials sms suggestion t tags test tools virtualshelves);
17
serials sms suggestion t tags test tools virtualshelves);
18
18
19
my @dirs = qw( basket circ debian errors offline_circ reserve reviews rotating_collections
19
my @dirs = qw( acqui basket circ debian errors offline_circ reserve reviews rotating_collections
20
serials sms virtualshelves );
20
serials sms virtualshelves );
21
21
22
if ( not $ENV{TEST_QA} ) {
22
if ( not $ENV{TEST_QA} ) {
23
- 

Return to bug 6679