@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 6 +++--- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -467,12 +467,12 @@ [% item.enumchron %] [% IF ( item.serialseq && item.enumchron!=item.serialseq ) %] -- - [% item.serialseq %] + [% item.serialseq | html %] [% END %] [% ELSIF item.enumchron %] - [% item.enumchron %] + [% item.enumchron | html %] [% ELSIF item.serialseq %] - [% item.serialseq %] + [% item.serialseq | html %] [% END %] [% IF ( item.publisheddate ) %] ([% item.publisheddate | $KohaDates %]) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1306,12 +1306,12 @@ [% ITEM_RESULT.enumchron %] [% IF ( ITEM_RESULT.serialseq && ITEM_RESULT.enumchron!=ITEM_RESULT.serialseq ) %] -- - [% ITEM_RESULT.serialseq %] + [% ITEM_RESULT.serialseq | html %] [% END %] [% ELSIF ITEM_RESULT.enumchron %] - [% ITEM_RESULT.enumchron %] + [% ITEM_RESULT.enumchron | html %] [% ELSIF ITEM_RESULT.serialseq %] - [% ITEM_RESULT.serialseq %] + [% ITEM_RESULT.serialseq | html %] [% END %] [% IF ( ITEM_RESULT.publisheddate ) %] ([% ITEM_RESULT.publisheddate | $KohaDates %]) --