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

(-)a/Koha/ILL/Request.pm (-1 / +1 lines)
Lines 2099-2105 This method returns the list of publicly readable database fields for both API a Link Here
2099
sub public_read_list {
2099
sub public_read_list {
2100
    return [
2100
    return [
2101
        qw(
2101
        qw(
2102
            illrequest_id backend status extended_attributes placed updated
2102
            illrequest_id backend status status_alias extended_attributes placed updated
2103
        )
2103
        )
2104
    ];
2104
    ];
2105
}
2105
}
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-2 / +6 lines)
Lines 183-189 Link Here
183
                                        </li>
183
                                        </li>
184
                                        <li>
184
                                        <li>
185
                                            <label for="status">Status:</label>
185
                                            <label for="status">Status:</label>
186
                                            [% request.status_alias ? request.statusalias.lib_opac : request.capabilities.$status.name | html %]
186
                                            [% request.capabilities.$status.name | html %]
187
                                            [% IF request.status_alias && request.statusalias.lib_opac %]
188
                                                <i><strong>[% request.statusalias.lib_opac | html %]</strong></i>
189
                                            [% ELSE %]
190
                                                <i><strong>[% request.statusalias.authorised_value | html %]</strong></i>
191
                                            [% END %]
187
                                        </li>
192
                                        </li>
188
                                        <li>
193
                                        <li>
189
                                            <label for="medium">Request type:</label>
194
                                            <label for="medium">Request type:</label>
190
- 

Return to bug 39446