--- /usr/lib/python2.3/site-packages/MoinMoin-1.5.4/userform.py 2006-06-22 20:57:23.000000000 +0200 +++ userform.py 2006-08-19 13:13:20.966590696 +0200 @@ -649,8 +649,11 @@ pi = request.getPathinfo() action = u"%s%s" % (sn, pi) userprefslink = wikiutil.getSysPage(request, "UserPreferences").link_to(request) - hint = _("To create an account or recover a lost password, see the %(userprefslink)s page.") % { - 'userprefslink': userprefslink} + sendmypasswordlink = wikiutil.getSysPage(request, "SendMyPassword").link_to(request) + + hint = _("To create an account or recover a lost password, see the %(userprefslink)s page. Or if you like to get sent your password go to %(SendMyPassword)s.") % { + 'userprefslink': userprefslink, + 'SendMyPassword':sendmypasswordlink} self._form = html.FORM(action=action) self._table = html.TABLE(border="0")