@@ -, +, @@ moremember.pl --- koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc @@ -1,5 +1,5 @@ [%- IF ( borrower.borrowernumber ) %] - [%- IF borrower.category_type == 'I' %] + [%- IF borrower.category.category_type == 'I' %] [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %] [%- ELSE %] [%- IF invert_name %] @@ -12,7 +12,7 @@ ([% borrower.cardnumber | html %]) [%- END %] [%- ELSIF ( borrowernumber ) %] - [%- IF category_type == 'I' %] + [%- IF borrower.category.category_type == 'I' %] [%- surname | html %] [% IF othernames %] ([% othernames | html %]) [% END %] [%- ELSE %] [%- IF invert_name %] --