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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +2 lines)
Lines 885-891 Link Here
885
                            <ul class="list-unstyled">
885
                            <ul class="list-unstyled">
886
                                [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
886
                                [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
887
                                    <li>
887
                                    <li>
888
                                        <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% matching_request_for_patron.illrequest_id %]">ILL Request #[% matching_request_for_patron.illrequest_id %]</a>
888
                                        <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% matching_request_for_patron.illrequest_id %]">ILL Request #[% matching_request_for_patron.illrequest_id | html %]</a>
889
                                    </li>
889
                                    </li>
890
                                [% END %]
890
                                [% END %]
891
                            </ul>
891
                            </ul>
Lines 897-903 Link Here
897
                            <ul class="list-unstyled">
897
                            <ul class="list-unstyled">
898
                                [% FOREACH remaining_matching_request IN remaining_matching_requests %]
898
                                [% FOREACH remaining_matching_request IN remaining_matching_requests %]
899
                                    <li>
899
                                    <li>
900
                                        <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% remaining_matching_request.illrequest_id %]">ILL Request #[% remaining_matching_request.illrequest_id %]</a> by [%- INCLUDE 'patron-title.inc' patron => remaining_matching_request.patron hide_patron_infos_if_needed => 1 -%]
900
                                        <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% remaining_matching_request.illrequest_id %]">ILL Request #[% remaining_matching_request.illrequest_id | html %]</a> by [%- INCLUDE 'patron-title.inc' patron => remaining_matching_request.patron hide_patron_infos_if_needed => 1 -%]
901
                                    </li>
901
                                    </li>
902
                                [% END %]
902
                                [% END %]
903
                            </ul>
903
                            </ul>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-2 / +3 lines)
Lines 396-402 Link Here
396
                                        <ul class="list-unstyled">
396
                                        <ul class="list-unstyled">
397
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
397
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
398
                                                <li>
398
                                                <li>
399
                                                    <a href="/cgi-bin/koha/opac-illrequests.pl?op=view&amp;illrequest_id=[% matching_request_for_patron.illrequest_id %]">ILL Request #[% matching_request_for_patron.illrequest_id %]</a>
399
                                                    <a href="/cgi-bin/koha/opac-illrequests.pl?op=view&amp;illrequest_id=[% matching_request_for_patron.illrequest_id | uri %]"
400
                                                        >ILL Request #[% matching_request_for_patron.illrequest_id | html %]</a
401
                                                    >
400
                                                </li>
402
                                                </li>
401
                                            [% END %]
403
                                            [% END %]
402
                                        </ul>
404
                                        </ul>
403
- 

Return to bug 38441