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

(-)a/about.pl (-1 / +1 lines)
Lines 449-455 if ( C4::Context->preference('WebBasedSelfCheck') Link Here
449
        q|select r.reserve_id from reserves r join old_reserves o on r.reserve_id=o.reserve_id|,
449
        q|select r.reserve_id from reserves r join old_reserves o on r.reserve_id=o.reserve_id|,
450
        { Slice => {} }
450
        { Slice => {} }
451
    );
451
    );
452
    if ( @$patrons or @$biblios or @$items or @$checkouts or @$holds ) {
452
    if ( @$patrons or @$checkouts or @$holds ) {
453
        $template->param(
453
        $template->param(
454
            has_ai_issues => 1,
454
            has_ai_issues => 1,
455
            ai_patrons    => $patrons,
455
            ai_patrons    => $patrons,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-11 lines)
Lines 205-220 Link Here
205
                <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
205
                <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
206
                <p>[% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %]</p>
206
                <p>[% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %]</p>
207
            [% END %]
207
            [% END %]
208
            [% IF ai_biblios %]
209
                <h4>Biblios</h4>
210
                <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
211
                <p>[% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %]</p>
212
            [% END %]
213
            [% IF ai_items %]
214
                <h4>Items</h4>
215
                <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
216
                <p>[% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %]</p>
217
            [% END %]
218
            [% IF ai_checkouts %]
208
            [% IF ai_checkouts %]
219
                <h4>Checkouts</h4>
209
                <h4>Checkouts</h4>
220
                <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
210
                <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
221
- 

Return to bug 20271