<tr>
<td class='color_4 light_border'>[% l("Home Library") %]</td>
<td class='light_border'>
- [% ctx.get_aou(ctx.user.home_ou.parent_ou).name %]<br/>
+ [% ctx.get_aou(ctx.user.home_ou.parent_ou).name | html %]<br/>
[% ctx.user.home_ou.name | html %]<br/>
- [% ctx.user.home_ou.billing_address.street1 %]<br/>
- [% IF ctx.user.home_ou.billing_address.street2; ctx.user.home_ou.billing_address.street2 _ "<br/>"; END %]
- [% ctx.user.home_ou.billing_address.city %], [% ctx.user.home_ou.billing_address.state %]
- [% ctx.user.home_ou.billing_address.post_code %]<br/>
+ [% ctx.user.home_ou.billing_address.street1 | html %]<br/>
+ [% IF ctx.user.home_ou.billing_address.street2; ctx.user.home_ou.billing_address.street2 | html; "<br/>"; END %]
+ [% ctx.user.home_ou.billing_address.city | html %], [% ctx.user.home_ou.billing_address.state | html %]
+ [% ctx.user.home_ou.billing_address.post_code | html %]<br/>
<br/>
- [% IF ctx.user.home_ou.phone; ctx.user.home_ou.phone _ "<br/>"; END %]
+ [% IF ctx.user.home_ou.phone; ctx.user.home_ou.phone | html; "<br/>"; END %]
- [% IF ctx.user.home_ou.email; ctx.user.home_ou.email _ "<br/>"; END %]
+ [% IF ctx.user.home_ou.email; '<a href="mailto:'; ctx.user.home_ou.email | html; '">'; ctx.user.home_ou.email | html; "</a><br/>"; END %]
[% lib_url = ctx.get_org_setting(ctx.user.home_ou.id, 'lib.info_url');
IF lib_url;
- '<a href="'; lib_url | html; '" property="url">'; lib_url; '</a>';
+ '<a href="'; lib_url | html; '" property="url">'; lib_url | html; '</a>';
END;
%]
</td>