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

(-)a/ill/ill-requests.pl (-4 / +1 lines)
Lines 163-172 if ( $backends_available ) { Link Here
163
            };
163
            };
164
            $template->param(
164
            $template->param(
165
                whole          => $backend_result,
165
                whole          => $backend_result,
166
                request        => $request,
166
                request        => $request
167
                status_aliases => scalar Koha::AuthorisedValues->search(
168
                    { category => 'ILLSTATUS' }
169
                )
170
            );
167
            );
171
        } else {
168
        } else {
172
            # Commit:
169
            # 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