id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
9091	<b> tags in user registration notification	willg@bluesock.org	hasienda	I'm using Trac 0.11.7 packaged in Debian testing with AccountManagerPlugin from svn r10593.\r\n\r\nWhen a user registers a new account, they're greeted with a notification with this text:\r\n\r\n    You may login as user <b>USERNAME</b> now.\r\n\r\nThe <b> </b> tags come from using tag.b in the value of the formatting dict, but that's wrong since the < and > get encoded.\r\n\r\nAlso, "login" is a noun.  You really want to say "log in" here.\r\n\r\nhttp://en.wikipedia.org/wiki/Login\r\n\r\n\r\nThe below takes out the tag.b and fixes login -> log in:\r\n\r\nIndex: web_ui.py\r\n===================================================================\r\n--- web_ui.py_(revision 10593)\r\n+++ web_ui.py_(working copy)\r\n@@ -460,8 +460,8 @@\r\n             else:\r\n                 chrome.add_notice(req, Markup(tag.span(tag(_(\r\n                      """Registration has been finished successfully.\r\n-                     You may login as user %(user)s now.""",\r\n-                     user=tag.b(req.args.get('username')))))))\r\n+                     You may log in as user %(user)s now.""",\r\n+                     user=req.args.get('username'))))))\r\n                 req.redirect(req.href.login())\r\n         data['reset_password_enabled'] = AccountModule(self.env\r\n                                                       ).reset_password_enabled\r\n	defect	closed	normal	AccountManagerPlugin	normal	fixed	HTML escape i18n		0.11
