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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 536-542 Link Here
536
                                        [% IF ( patron.borrowernotes ) %]
536
                                        [% IF ( patron.borrowernotes ) %]
537
                                            <li id="patron-borrowernotes">
537
                                            <li id="patron-borrowernotes">
538
                                                <span class="label">Circulation note: </span><br />
538
                                                <span class="label">Circulation note: </span><br />
539
                                                [% patron.borrowernotes | html | html_line_break %]
539
                                                [% patron.borrowernotes | $raw | html_line_break %]
540
                                            </li>
540
                                            </li>
541
                                        [% END %]
541
                                        [% END %]
542
542
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-note.inc (-3 / +2 lines)
Lines 4-15 Link Here
4
        <ul>
4
        <ul>
5
            [% FOREACH message IN patron_messages %]
5
            [% FOREACH message IN patron_messages %]
6
                <li>
6
                <li>
7
                    <strong>[% message.message | html %]</strong><br>
7
                    <strong>[% message.message | html | html_line_break %]</strong><br>
8
                    &nbsp;&nbsp;&nbsp;<i>Written on [% message.message_date | $KohaDates %] by [% Branches.GetName(message.branchcode) | html %]</i>
8
                    &nbsp;&nbsp;&nbsp;<i>Written on [% message.message_date | $KohaDates %] by [% Branches.GetName(message.branchcode) | html %]</i>
9
                </li>
9
                </li>
10
            [% END %]
10
            [% END %]
11
11
12
            [% IF ( opacnote ) %]<li>[% opacnote | html %]</li>[% END %]
12
            [% IF ( opacnote ) %]<li>[% opacnote | html | html_line_break %]</li>[% END %]
13
        </ul>
13
        </ul>
14
    </div>
14
    </div>
15
[% END %]
15
[% END %]
16
- 

Return to bug 23409