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

(-)a/ill/ill-requests.pl (-4 / +1 lines)
Lines 168-177 if ( $backends_available ) { Link Here
168
            };
168
            };
169
            $template->param(
169
            $template->param(
170
                whole          => $backend_result,
170
                whole          => $backend_result,
171
                request        => $request,
171
                request        => $request
172
                status_aliases => scalar Koha::AuthorisedValues->search(
173
                    { category => 'ILLSTATUS' }
174
                )
175
            );
172
            );
176
        } else {
173
        } else {
177
            # Commit:
174
            # Commit:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +3 lines)
Lines 4-9 Link Here
4
[% USE Koha %]
4
[% USE Koha %]
5
[% USE KohaDates %]
5
[% USE KohaDates %]
6
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
7
[% USE AuthorisedValues %]
8
7
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
8
<title>Koha &rsaquo; ILL requests</title>
10
<title>Koha &rsaquo; ILL requests</title>
9
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
Lines 201-207 Link Here
201
                                        [% END %]
203
                                        [% END %]
202
                                            [% request.capabilities.$stat.name | html %]
204
                                            [% request.capabilities.$stat.name | html %]
203
                                        </option>
205
                                        </option>
204
                                        [% FOREACH alias IN status_aliases %]
206
                                        [% FOREACH alias IN AuthorisedValues.Get('ILLSTATUS') %]
205
                                            [% IF alias.id == current_alias %]
207
                                            [% IF alias.id == current_alias %]
206
                                            <option value="[% alias.id %]" selected>
208
                                            <option value="[% alias.id %]" selected>
207
                                            [% ELSE %]
209
                                            [% ELSE %]
208
- 

Return to bug 20581