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

(-)a/C4/UsageStats.pm (+1 lines)
Lines 100-105 sub BuildReport { Link Here
100
        DebugLevel
100
        DebugLevel
101
        delimiter
101
        delimiter
102
        noItemTypeImages
102
        noItemTypeImages
103
        OpacNoItemTypeImages
103
        virtualshelves
104
        virtualshelves
104
        AutoLocation
105
        AutoLocation
105
        IndependentBranches
106
        IndependentBranches
(-)a/installer/data/mysql/atomicupdate/bug_4944_OpacNoItemTypeImages.perl (+12 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
4
    my $noItemTypeImages = C4::Context->preference('noItemTypeImages');
5
    $dbh->do( "INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) 
6
        VALUES('OpacNoItemTypeImages',$noItemTypeImages,NULL,'If ON, disables itemtype images in the OPAC','YesNo')" );
7
    $dbh->do( "UPDATE systempreferences SET explanation = 'If ON, disables itemtype images in the staff interface'
8
        WHERE variable = 'noItemTypeImages' ");
9
10
    # Always end with this (adjust the bug info)
11
    NewVersion( $DBversion, 4944, "Add new system preference OpacNoItemTypeImages");
12
}
(-)a/installer/data/mysql/sysprefs.sql (-1 / +2 lines)
Lines 327-333 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
327
('NewsAuthorDisplay','none','none|opac|staff|both','Display the author name for news items.','Choice'),
327
('NewsAuthorDisplay','none','none|opac|staff|both','Display the author name for news items.','Choice'),
328
('noissuescharge','5','','Define maximum amount withstanding before check outs are blocked','Integer'),
328
('noissuescharge','5','','Define maximum amount withstanding before check outs are blocked','Integer'),
329
('NoIssuesChargeGuarantees','','','Define maximum amount withstanding before check outs are blocked','Integer'),
329
('NoIssuesChargeGuarantees','','','Define maximum amount withstanding before check outs are blocked','Integer'),
330
('noItemTypeImages','0',NULL,'If ON, disables item-type images','YesNo'),
330
('noItemTypeImages','0',NULL,'If ON, disables itemtype images in the staff interface','YesNo'),
331
('NoRenewalBeforePrecision','exact_time','date|exact_time','Calculate "No renewal before" based on date only or exact time of due date','Choice'),
331
('NoRenewalBeforePrecision','exact_time','date|exact_time','Calculate "No renewal before" based on date only or exact time of due date','Choice'),
332
('NotesBlacklist','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
332
('NotesBlacklist','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
333
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
333
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
Lines 412-417 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
412
('OpacNav','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
412
('OpacNav','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
413
('OpacNavBottom','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
413
('OpacNavBottom','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
414
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
414
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
415
('OpacNoItemTypeImages','0',NULL,'If ON, disables itemtype images in the OPAC','YesNo'),
415
('OPACNoResultsFound','','70|10','Display this HTML when no results are found for a search in the OPAC','Textarea'),
416
('OPACNoResultsFound','','70|10','Display this HTML when no results are found for a search in the OPAC','Textarea'),
416
('OPACNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number OPAC searches','YesNo'),
417
('OPACNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number OPAC searches','YesNo'),
417
('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
418
('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-7 / +7 lines)
Lines 140-152 Item types administration Link Here
140
                    </select>
140
                    </select>
141
                    <span class="hint">Options are defined as the authorized values for the ITEMTYPECAT category.</span>
141
                    <span class="hint">Options are defined as the authorized values for the ITEMTYPECAT category.</span>
142
                </li>
142
                </li>
143
                [% IF Koha.Preference('noItemTypeImages') %]
143
                [% IF ( Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') ) %]
144
                    <li>
144
                    <li>
145
                        <span class="label">Image: </span>Item type images are disabled. To enable them, turn off the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&amp;searchfield=noItemTypeImages">noItemTypeImages system preference</a>
145
                        <span class="label">Image: </span>Item type images are disabled. To enable them, turn off the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&amp;searchfield=noItemTypeImages">noItemTypeImages or OpacNoItemTypeImages system preferences</a>
146
                    </li>
146
                    </li>
147
                [% END %]
147
                [% END %]
148
            </ol>
148
            </ol>
149
            [% UNLESS Koha.Preference('noItemTypeImages') %]
149
            [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]
150
                <div id="icons" class="toptabs" style="clear:both">
150
                <div id="icons" class="toptabs" style="clear:both">
151
                    <h5 style="margin-left:10px;">Choose an icon:</h5>
151
                    <h5 style="margin-left:10px;">Choose an icon:</h5>
152
                    <ul>
152
                    <ul>
Lines 342-348 Item types administration Link Here
342
                <td>[% itemtype.itemtype | html %]</td>
342
                <td>[% itemtype.itemtype | html %]</td>
343
            </tr>
343
            </tr>
344
            <tr><th scope="row">Description</th><td>[% itemtype.translated_description | html %]</td></tr>
344
            <tr><th scope="row">Description</th><td>[% itemtype.translated_description | html %]</td></tr>
345
            [% UNLESS Koha.Preference('noItemTypeImages') %]
345
            [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]
346
                <tr>
346
                <tr>
347
                    <th scope="row">Image</th>
347
                    <th scope="row">Image</th>
348
                    <td>
348
                    <td>
Lines 368-374 Item types administration Link Here
368
    [% IF itemtypes %]
368
    [% IF itemtypes %]
369
        <table id="table_item_type">
369
        <table id="table_item_type">
370
          <thead>
370
          <thead>
371
            [% UNLESS Koha.Preference('noItemTypeImages') %]<th class="noExport">Image</th>[% END %]
371
            [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]<th class="noExport">Image</th>[% END %]
372
            <th>Code</th>
372
            <th>Code</th>
373
            <th>Description</th>
373
            <th>Description</th>
374
            <th>Search category</th>
374
            <th>Search category</th>
Lines 385-391 Item types administration Link Here
385
          </thead>
385
          </thead>
386
          [% FOREACH itemtype IN itemtypes %]
386
          [% FOREACH itemtype IN itemtypes %]
387
            <tr>
387
            <tr>
388
                [% UNLESS Koha.Preference('noItemTypeImages') %]
388
                [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]
389
                    <td>
389
                    <td>
390
                        [% SET image_location = itemtype.image_location('intranet') %]
390
                        [% SET image_location = itemtype.image_location('intranet') %]
391
                        [% IF image_location %]<img src="[% image_location | html %]" alt="" />[% ELSE %]&nbsp;[% END %]
391
                        [% IF image_location %]<img src="[% image_location | html %]" alt="" />[% ELSE %]&nbsp;[% END %]
Lines 484-490 Item types administration Link Here
484
         $(document).ready(function() {
484
         $(document).ready(function() {
485
            $('#icons').tabs();
485
            $('#icons').tabs();
486
            var columns_settings = [% ColumnsSettings.GetColumns( 'admin', 'itemtypes', 'table_item_type', 'json' ) | $raw %];
486
            var columns_settings = [% ColumnsSettings.GetColumns( 'admin', 'itemtypes', 'table_item_type', 'json' ) | $raw %];
487
            [% IF Koha.Preference('noItemTypeImages') %]
487
            [% IF ( Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') ) %]
488
                columns_settings.shift(); // Remove item type image column from configuration
488
                columns_settings.shift(); // Remove item type image column from configuration
489
            [% END %]
489
            [% END %]
490
490
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +1 lines)
Lines 29-35 Administration: Link Here
29
                  1: Some
29
                  1: Some
30
                  2: All
30
                  2: All
31
        -
31
        -
32
            - "Show itemtype icons in the catalog: "
32
            - "Show itemtype icons in the staff interface: "
33
            - pref: noItemTypeImages
33
            - pref: noItemTypeImages
34
              default: 0
34
              default: 0
35
              choices:
35
              choices:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (+7 lines)
Lines 109-114 OPAC: Link Here
109
              class: file
109
              class: file
110
            - '<br />Options:<ul><li><a href="#" class="set_syspref" data-syspref="OPACXSLTDetailsDisplay" data-value="">Leave empty</a> for "no xslt"</li><li>enter "<a href="#" class="set_syspref" data-syspref="OPACXSLTDetailsDisplay" data-value="default">default</a>" for the default one</li><li>put a path to define a xslt file</li><li>put an URL for an external specific stylesheet.</li></ul>{langcode} will be replaced with current interface language'
110
            - '<br />Options:<ul><li><a href="#" class="set_syspref" data-syspref="OPACXSLTDetailsDisplay" data-value="">Leave empty</a> for "no xslt"</li><li>enter "<a href="#" class="set_syspref" data-syspref="OPACXSLTDetailsDisplay" data-value="default">default</a>" for the default one</li><li>put a path to define a xslt file</li><li>put an URL for an external specific stylesheet.</li></ul>{langcode} will be replaced with current interface language'
111
        -
111
        -
112
            - "Show itemtype icons in the OPAC: "
113
            - pref: OpacNoItemTypeImages
114
              default: 0
115
              choices:
116
                  yes: "No"
117
                  no: "Yes"
118
        -
112
            - pref: DisplayOPACiconsXSLT
119
            - pref: DisplayOPACiconsXSLT
113
              choices:
120
              choices:
114
                  yes: Show
121
                  yes: Show
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt (-1 / +1 lines)
Lines 142-148 Link Here
142
    <table>
142
    <table>
143
        <tr>
143
        <tr>
144
    [% FOREACH itemtypeloo IN advsearchloo.code_loop %]
144
    [% FOREACH itemtypeloo IN advsearchloo.code_loop %]
145
        <td><input type="checkbox" id="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]" name="limit" value="mc-[% itemtypeloo.ccl | html %]:[% itemtypeloo.code | html %]"/><label for="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]">[% UNLESS ( noItemTypeImages ) %][% IF ( itemtypeloo.imageurl ) %]<img src="[% itemtypeloo.imageurl | html %]" alt="[% itemtypeloo.description | html %]" />[% END %]&nbsp;[% END %]
145
        <td><input type="checkbox" id="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]" name="limit" value="mc-[% itemtypeloo.ccl | html %]:[% itemtypeloo.code | html %]"/><label for="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]">[% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %][% IF ( itemtypeloo.imageurl ) %]<img src="[% itemtypeloo.imageurl | html %]" alt="[% itemtypeloo.description | html %]" />[% END %]&nbsp;[% END %]
146
        [% itemtypeloo.description | html %]</label></td>
146
        [% itemtypeloo.description | html %]</label></td>
147
        [% IF ( loop.last ) %]</tr>[% ELSE %][% UNLESS ( loop.count % 5 ) %]</tr><tr>[% END %][% END %]
147
        [% IF ( loop.last ) %]</tr>[% ELSE %][% UNLESS ( loop.count % 5 ) %]</tr><tr>[% END %][% END %]
148
    [% END %]
148
    [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt (-1 / +1 lines)
Lines 148-154 Link Here
148
                                                        value="[% IF ( itemtypeloo.cat == 1 ) %][% itemtypeloo.code | html %][% ELSE %]mc-[% itemtypeloo.ccl | html %]:[% itemtypeloo.code | html %][% END %]"
148
                                                        value="[% IF ( itemtypeloo.cat == 1 ) %][% itemtypeloo.code | html %][% ELSE %]mc-[% itemtypeloo.ccl | html %]:[% itemtypeloo.code | html %][% END %]"
149
                                                    />
149
                                                    />
150
                                                    <label for="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]">
150
                                                    <label for="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]">
151
                                                        [% UNLESS ( noItemTypeImages ) %]
151
                                                        [% UNLESS ( Koha.Preference('OpacNoItemTypeImages')) %]
152
                                                            [% IF ( itemtypeloo.imageurl ) %]
152
                                                            [% IF ( itemtypeloo.imageurl ) %]
153
                                                                <img src="[% itemtypeloo.imageurl | html %]" alt="[% itemtypeloo.description | html %]" />
153
                                                                <img src="[% itemtypeloo.imageurl | html %]" alt="[% itemtypeloo.description | html %]" />
154
                                                            [% END %]
154
                                                            [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-2 / +2 lines)
Lines 247-253 Link Here
247
                        [% END %]
247
                        [% END %]
248
248
249
                        [% UNLESS ( item_level_itypes ) %]
249
                        [% UNLESS ( item_level_itypes ) %]
250
                            [% IF ( imgeurl ) %]
250
                            [% IF ( imgeurl && !Koha.Preference('OpacNoItemTypeImages') ) %]
251
                                <img src="[% imageurl | html %]" alt="" />
251
                                <img src="[% imageurl | html %]" alt="" />
252
                            [% END %]
252
                            [% END %]
253
                            <span class="results_summary itemtype"><span class="label">Item type: </span>
253
                            <span class="results_summary itemtype"><span class="label">Item type: </span>
Lines 1166-1172 Link Here
1166
                [% END %]
1166
                [% END %]
1167
                    [% IF ( item_level_itypes ) %]
1167
                    [% IF ( item_level_itypes ) %]
1168
                        <td class="itype">
1168
                        <td class="itype">
1169
                            [% UNLESS ( noItemTypeImages ) %]
1169
                            [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
1170
                                [% IF ( ITEM_RESULT.imageurl ) %]
1170
                                [% IF ( ITEM_RESULT.imageurl ) %]
1171
                                    <img src="[% ITEM_RESULT.imageurl | html %]" title="[% ITEM_RESULT.description | html %]" alt="[% ITEM_RESULT.description | html %]" />
1171
                                    <img src="[% ITEM_RESULT.imageurl | html %]" title="[% ITEM_RESULT.description | html %]" alt="[% ITEM_RESULT.description | html %]" />
1172
                                [% END %]
1172
                                [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt (-1 / +1 lines)
Lines 166-172 Link Here
166
166
167
                                                </td>
167
                                                </td>
168
                                                <td>
168
                                                <td>
169
                                                [% UNLESS ( noItemTypeImages ) %]
169
                                                [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
170
                                                    [% IF ( issue.imageurl ) %]
170
                                                    [% IF ( issue.imageurl ) %]
171
                                                        <img src="[% issue.imageurl | html %]" alt="" />
171
                                                        <img src="[% issue.imageurl | html %]" alt="" />
172
                                                    [% END %]
172
                                                    [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-1 / +1 lines)
Lines 375-381 Link Here
375
375
376
                                                            [% IF ( item_level_itypes ) %]
376
                                                            [% IF ( item_level_itypes ) %]
377
                                                                <td class="itype">
377
                                                                <td class="itype">
378
                                                                    [% UNLESS ( noItemTypeImages ) %]
378
                                                                    [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
379
                                                                        [% IF ( itemLoo.imageurl ) %]
379
                                                                        [% IF ( itemLoo.imageurl ) %]
380
                                                                            <img src="[% itemLoo.imageurl | html %]" alt="" />
380
                                                                            <img src="[% itemLoo.imageurl | html %]" alt="" />
381
                                                                        [% END %]
381
                                                                        [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results-grouped.tt (-1 / +1 lines)
Lines 167-173 Link Here
167
                                                                <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% GROUP_RESULT.biblionumber |url %]">[% IF ( GROUP_RESULT.isbn ) %]<img src="https://images-na.ssl-images-amazon.com/images/P/[% GROUP_RESULT.isbn | html %].01.TZZZZZZZ.jpg" alt="" class="thumbnail" />[% ELSE %]<img src="http://g-images.amazon.com/images/G/01/x-site/icons/no-img-sm.gif" alt="" class="thumbnail" />[% END %]
167
                                                                <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% GROUP_RESULT.biblionumber |url %]">[% IF ( GROUP_RESULT.isbn ) %]<img src="https://images-na.ssl-images-amazon.com/images/P/[% GROUP_RESULT.isbn | html %].01.TZZZZZZZ.jpg" alt="" class="thumbnail" />[% ELSE %]<img src="http://g-images.amazon.com/images/G/01/x-site/icons/no-img-sm.gif" alt="" class="thumbnail" />[% END %]
168
                                                            </a>
168
                                                            </a>
169
                                                        [% ELSE %]
169
                                                        [% ELSE %]
170
                                                            [% UNLESS ( noItemTypeImages ) %]
170
                                                            [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
171
                                                                [% IF ( GROUP_RESULT.imageurl ) %]
171
                                                                [% IF ( GROUP_RESULT.imageurl ) %]
172
                                                                    <img src="[% GROUP_RESULT.imageurl | html %]" title="[% GROUP_RESULT.description | html %]" />
172
                                                                    <img src="[% GROUP_RESULT.imageurl | html %]" title="[% GROUP_RESULT.description | html %]" />
173
                                                                [% END %]
173
                                                                [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-1 / +1 lines)
Lines 254-260 Link Here
254
                                                [% END %]
254
                                                [% END %]
255
                                            </td>
255
                                            </td>
256
256
257
                                            [% IF ( !item_level_itypes && !noItemTypeImages ) %]
257
                                            [% IF ( !item_level_itypes && !Koha.Preference('OpacNoItemTypeImages') ) %]
258
                                                [% # Cell 3: Show item type image %]
258
                                                [% # Cell 3: Show item type image %]
259
                                                <td class="itypecol">
259
                                                <td class="itypecol">
260
                                                    [% IF ( SEARCH_RESULT.imageurl ) %]
260
                                                    [% IF ( SEARCH_RESULT.imageurl ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-1 / +1 lines)
Lines 314-320 Link Here
314
                                                <td class="select selectcol"><input type="checkbox" class="cb" name="biblionumber" value="[% itemsloo.biblionumber | html %]" /></td>
314
                                                <td class="select selectcol"><input type="checkbox" class="cb" name="biblionumber" value="[% itemsloo.biblionumber | html %]" /></td>
315
                                                [% UNLESS ( item_level_itypes ) %]
315
                                                [% UNLESS ( item_level_itypes ) %]
316
                                                    <td>
316
                                                    <td>
317
                                                        [% UNLESS ( noItemTypeImages ) %]
317
                                                        [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
318
                                                            <img src="[% itemsloo.imageurl | html %]" alt="[% itemsloo.description | html %]" title="[% itemsloo.description | html %]" />
318
                                                            <img src="[% itemsloo.imageurl | html %]" alt="[% itemsloo.description | html %]" title="[% itemsloo.description | html %]" />
319
                                                        [% END %]
319
                                                        [% END %]
320
                                                        [% itemsloo.description | html %]
320
                                                        [% itemsloo.description | html %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +2 lines)
Lines 315-321 Link Here
315
                                                [% UNLESS ( item_level_itypes ) %]
315
                                                [% UNLESS ( item_level_itypes ) %]
316
                                                    <td class="itype">
316
                                                    <td class="itype">
317
                                                        <span class="tdlabel">Item type:</span>
317
                                                        <span class="tdlabel">Item type:</span>
318
                                                        [% IF ( ISSUE.imageurl ) %]
318
                                                        [% IF ( ISSUE.imageurl && !Koha.Preference('OpacNoItemTypeImages') ) %]
319
                                                            <img src="[% ISSUE.imageurl | html %]" title="[% ISSUE.description | html %]" alt="[% ISSUE.description | html %]" />
319
                                                            <img src="[% ISSUE.imageurl | html %]" title="[% ISSUE.description | html %]" alt="[% ISSUE.description | html %]" />
320
                                                        [% END %] [% ISSUE.description | html %]
320
                                                        [% END %] [% ISSUE.description | html %]
321
                                                    </td>
321
                                                    </td>
Lines 590-596 Link Here
590
590
591
                                                [% UNLESS ( item_level_itypes ) %]
591
                                                [% UNLESS ( item_level_itypes ) %]
592
                                                    <td>
592
                                                    <td>
593
                                                        [% IF ( OVERDUE.imageurl ) %]
593
                                                        [% IF ( OVERDUE.imageurl  && !Koha.Preference('OpacNoItemTypeImages') ) %]
594
                                                            <img src="[% OVERDUE.imageurl | html %]" title="[% OVERDUE.description | html %]" alt="[% OVERDUE.description | html %]" />
594
                                                            <img src="[% OVERDUE.imageurl | html %]" title="[% OVERDUE.description | html %]" alt="[% OVERDUE.description | html %]" />
595
                                                        [% END %] [% OVERDUE.description | html %]
595
                                                        [% END %] [% OVERDUE.description | html %]
596
                                                    </td>
596
                                                    </td>
597
- 

Return to bug 4944