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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +2 lines)
Lines 633-639 Link Here
633
        [% IF MARCNOTE.marcnote.match('^https?://\S+$') %]
633
        [% IF MARCNOTE.marcnote.match('^https?://\S+$') %]
634
            <a href="[% MARCNOTE.marcnote | url %]">[% MARCNOTE.marcnote | html %]</a>
634
            <a href="[% MARCNOTE.marcnote | url %]">[% MARCNOTE.marcnote | html %]</a>
635
        [% ELSE %]
635
        [% ELSE %]
636
            [% MARCNOTE.marcnote FILTER html_line_break | html %]
636
            [% MARCNOTE.marcnote | html | html_line_break %]
637
        [% END %]
637
        [% END %]
638
        </p>
638
        </p>
639
    [% END %]
639
    [% END %]
Lines 659-665 Link Here
659
            [% END %]
659
            [% END %]
660
            [% IF ( subscription.closed ) %]<p>This subscription is closed.</p>[% END %]
660
            [% IF ( subscription.closed ) %]<p>This subscription is closed.</p>[% END %]
661
            [% IF ( subscription.callnumber ) %]<p>Callnumber: [% subscription.callnumber | html %] </p>[% END %]
661
            [% IF ( subscription.callnumber ) %]<p>Callnumber: [% subscription.callnumber | html %] </p>[% END %]
662
            [% IF ( subscription.subscriptionnotes ) %]<p>[% subscription.subscriptionnotes FILTER html_line_break | html %] </p>[% END %]
662
            [% IF ( subscription.subscriptionnotes ) %]<p>[% subscription.subscriptionnotes | html | html_line_break %] </p>[% END %]
663
            [% IF ( subscription.missinglist ) %]<p>Missing issues: [% subscription.missinglist | html %] </p>[% END %]
663
            [% IF ( subscription.missinglist ) %]<p>Missing issues: [% subscription.missinglist | html %] </p>[% END %]
664
            [% IF ( subscription.librariannote ) %]<p>([% subscription.librariannote | html %])</p>[% END %]
664
            [% IF ( subscription.librariannote ) %]<p>([% subscription.librariannote | html %])</p>[% END %]
665
            [% IF ( subscription.latestserials ) %]
665
            [% IF ( subscription.latestserials ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-1 / +1 lines)
Lines 44-50 Link Here
44
		<td>
44
		<td>
45
            <a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" href="#">[% QUEUED_MESSAGE.subject | html %]</a>
45
            <a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" href="#">[% QUEUED_MESSAGE.subject | html %]</a>
46
            <div id="notice[% QUEUED_MESSAGE.message_id | html %]" class="notice">
46
            <div id="notice[% QUEUED_MESSAGE.message_id | html %]" class="notice">
47
                <iframe srcdoc="[% QUEUED_MESSAGE.content FILTER html_line_break | html %]"></iframe>
47
                <iframe srcdoc="[% QUEUED_MESSAGE.content | html | html_line_break %]"></iframe>
48
            </div>
48
            </div>
49
        </td>
49
        </td>
50
		<td>
50
		<td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt (-4 / +4 lines)
Lines 336-345 Link Here
336
            <li><span class="label">History end date:</span> [% histenddate | html %]</li>
336
            <li><span class="label">History end date:</span> [% histenddate | html %]</li>
337
            <li><span class="label">Received issues:</span>[% recievedlist | html %]</li>
337
            <li><span class="label">Received issues:</span>[% recievedlist | html %]</li>
338
            <li><span class="label">Missing issues:</span>[% missinglist | html %]</li>
338
            <li><span class="label">Missing issues:</span>[% missinglist | html %]</li>
339
            <li><span class="label">Nonpublic note:</span>[% internalnotes FILTER html_line_break | html %]</li>
339
            <li><span class="label">Nonpublic note:</span>[% internalnotes | html | html_line_break %]</li>
340
            <li><span class="label">Public note:</span>[% notes FILTER html_line_break | html %]</li>
340
            <li><span class="label">Public note:</span>[% notes | html | html_line_break %]</li>
341
            <li><span class="label">History staff note:</span>[% librariannote FILTER html_line_break | html %]</li>
341
            <li><span class="label">History staff note:</span>[% librariannote | html | html_line_break %]</li>
342
            <li><span class="label">History OPAC note:</span>[% opacnote FILTER html_line_break | html %]</li>
342
            <li><span class="label">History OPAC note:</span>[% opacnote | html | html_line_break %]</li>
343
        </ol>
343
        </ol>
344
    </div>
344
    </div>
345
    </div>
345
    </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-2 / +2 lines)
Lines 811-817 Link Here
811
                                  <p class="subscription_callnumber">Call number: [% subscription.callnumber | html %]</p>
811
                                  <p class="subscription_callnumber">Call number: [% subscription.callnumber | html %]</p>
812
                                [% END %]
812
                                [% END %]
813
                                [% IF ( subscription.subscriptionnotes ) %]
813
                                [% IF ( subscription.subscriptionnotes ) %]
814
                                    <p class="subscription_notes">[% subscription.subscriptionnotes FILTER html_line_break | html %] </p>
814
                                    <p class="subscription_notes">[% subscription.subscriptionnotes | html | html_line_break %] </p>
815
                                [% END %]
815
                                [% END %]
816
                                <p class="subscription_dates">Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]</p>
816
                                <p class="subscription_dates">Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]</p>
817
                                [% IF ( subscription.letter ) %]<span class="email_notifications">
817
                                [% IF ( subscription.letter ) %]<span class="email_notifications">
Lines 829-835 Link Here
829
                                    <p class="subscription_missing">Missing issues: [% subscription.missinglist | html %] </p>
829
                                    <p class="subscription_missing">Missing issues: [% subscription.missinglist | html %] </p>
830
                                [% END %]
830
                                [% END %]
831
                                [% IF ( subscription.opacnote ) %]
831
                                [% IF ( subscription.opacnote ) %]
832
                                    <p class="subscription_opacnote">[% subscription.opacnote FILTER html_line_break | html %]</p>
832
                                    <p class="subscription_opacnote">[% subscription.opacnote | html | html_line_break %]</p>
833
                                [% END %]
833
                                [% END %]
834
                                [% IF ( subscription.latestserials ) %]
834
                                [% IF ( subscription.latestserials ) %]
835
                                    <p class="subscription_latestissues"> The [% subscription.opacdisplaycount | html %] latest issues for this subscription:</p>
835
                                    <p class="subscription_latestissues"> The [% subscription.opacdisplaycount | html %] latest issues for this subscription:</p>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt (-3 / +2 lines)
Lines 115-121 Link Here
115
                                    <h4>[% subscription_LOO.branchname | html %]</h4>
115
                                    <h4>[% subscription_LOO.branchname | html %]</h4>
116
116
117
                                    [% IF ( subscription_LOO.notes ) %]
117
                                    [% IF ( subscription_LOO.notes ) %]
118
                                        <p>[% subscription_LOO.notes FILTER html_line_break | html %]</p>
118
                                        <p>[% subscription_LOO.notes | html | html_line_break %]</p>
119
                                    [% END %]
119
                                    [% END %]
120
120
121
                                    [% IF ( subscription_LOO.recievedlist ) %]
121
                                    [% IF ( subscription_LOO.recievedlist ) %]
Lines 131-137 Link Here
131
                                    [% IF ( subscription_LOO.opacnote ) %]
131
                                    [% IF ( subscription_LOO.opacnote ) %]
132
                                        <h5>Issues summary</h5>
132
                                        <h5>Issues summary</h5>
133
                                        <p>
133
                                        <p>
134
                                            [% subscription_LOO.opacnote FILTER html_line_break | html %]
134
                                            [% subscription_LOO.opacnote | html | html_line_break %]
135
                                        </p>
135
                                        </p>
136
                                    [% END %]
136
                                    [% END %]
137
                                    [% IF ( subscription_LOO.letter ) %]
137
                                    [% IF ( subscription_LOO.letter ) %]
138
- 

Return to bug 21947