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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview.tt (-1 / +1 lines)
Lines 46-52 Link Here
46
                    [% END %]
46
                    [% END %]
47
                </table></li
47
                </table></li
48
            >
48
            >
49
            <li><span class="label">Notes:</span>[% routingnotes | html %]</li>
49
            <li><span class="label">Notes:</span><div class="d-inline-block">[% routingnotes | html | html_line_break %]</div></li>
50
        </ol>
50
        </ol>
51
    </fieldset>
51
    </fieldset>
52
52
(-)a/serials/routing-preview.pl (-2 lines)
Lines 135-141 for my $routing (@routinglist) { Link Here
135
}
135
}
136
136
137
my $routingnotes = $serials[0]->{'routingnotes'};
137
my $routingnotes = $serials[0]->{'routingnotes'};
138
$routingnotes =~ s/\n/\<br \/\>/g;
139
138
140
$template->param(
139
$template->param(
141
    title                                            => $subs->{'bibliotitle'},
140
    title                                            => $subs->{'bibliotitle'},
142
- 

Return to bug 41846