TPac: Fix bolding of bad email/username
authorThomas Berezansky <tsbere@mvlc.org>
Sat, 24 Sep 2011 23:03:27 +0000 (19:03 -0400)
committerDan Scott <dscott@laurentian.ca>
Mon, 26 Sep 2011 20:47:04 +0000 (16:47 -0400)
HTML filter the variable, not the entire language string.

Signed-off-by: Thomas Berezansky <tsbere@mvlc.org>
Signed-off-by: Dan Scott <dscott@laurentian.ca>
Open-ILS/src/templates/opac/myopac/update_email.tt2
Open-ILS/src/templates/opac/myopac/update_username.tt2

index 8279959..b920e08 100644 (file)
@@ -6,7 +6,8 @@
 
 [% IF ctx.invalid_email %]
     <div id='account-update-email-error'>
-        [% l('The email address "<b>[_1]</b>" is invalid.  Please try a different email address.', ctx.invalid_email) | html %]
+        [% bad_email = ctx.invalid_email | html %]
+        [% l('The email address "<b>[_1]</b>" is invalid.  Please try a different email address.', bad_email) %]
     </div>
 [% END %]
 
index 8ff329e..6f48320 100644 (file)
@@ -6,7 +6,8 @@
 
 [% IF ctx.invalid_username %]
     <div id='account-update-email-error'> <!-- borrow css from update-email page -->
-        [% l('"<b>[_1]</b>" is not a valid username.  Usernames cannot have any spaces.  Please try a different username.', ctx.invalid_username) | html %]
+        [% bad_user = ctx.invalid_username | html %]
+        [% l('"<b>[_1]</b>" is not a valid username.  Usernames cannot have any spaces.  Please try a different username.', bad_user) %]
     </div>
 
 [% ELSIF ctx.username_exists %]