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

(-)a/admin/authorised_values.pl (-1 / +1 lines)
Lines 247-253 sub default_form { Link Here
247
    }
247
    }
248
248
249
    # push koha system categories
249
    # push koha system categories
250
    foreach (qw(Asort1 Asort2 Bsort1 Bsort2 SUGGEST DAMAGED LOST REPORT_GROUP REPORT_SUBGROUP DEPARTMENT TERM)) {
250
    foreach (qw(Asort1 Asort2 Bsort1 Bsort2 SUGGEST DAMAGED LOST REPORT_GROUP REPORT_SUBGROUP DEPARTMENT TERM SUGGEST_STATUS)) {
251
        push @category_list, $_ unless $categories{$_};
251
        push @category_list, $_ unless $categories{$_};
252
    }
252
    }
253
253
(-)a/suggestion/suggestion.pl (-2 lines)
Lines 387-393 foreach my $field ( qw(managedby acceptedby suggestedby budgetid) ) { Link Here
387
}
387
}
388
$template->param(%hashlists);
388
$template->param(%hashlists);
389
$template->param(
389
$template->param(
390
    DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
391
    SuggestionStatuses       => GetAuthorisedValues('SUGGEST_STATUS'),
390
    SuggestionStatuses       => GetAuthorisedValues('SUGGEST_STATUS'),
392
);
391
);
393
output_html_with_http_headers $input, $cookie, $template->output;
392
output_html_with_http_headers $input, $cookie, $template->output;
394
- 

Return to bug 9307