@@ -, +, @@ --> without patch it explodes --> with patch it works, and if there is a fee related to item, the title should be printed out --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -106,7 +106,7 @@ [% IF ( account.itemnumber ) %][% END %] - [% account.description %] [% IF account.item AND account.accounttype != 'F' AND account.accounttype != 'FU' %] [% account.item.biblio.title |html %][% END %] + [% account.description %] [% IF account.itemnumber AND account.accounttype != 'F' AND account.accounttype != 'FU' %] [% account.item.biblio.title |html %][% END %] [% IF ( account.itemnumber ) %][% END %] [% account.date | $KohaDates %] --