Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 1856:7c84534aec13
Add a note to the 'Invalid One Time Key' message...
...about Mozilla double-loading the page [SF#827533].
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Wed, 22 Oct 2003 16:47:55 +0000 |
| parents | 4ac11e7fa11a |
| children | dc6f2155e5b4 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Mon Oct 20 21:14:10 2003 +0000 +++ b/roundup/cgi/client.py Wed Oct 22 16:47:55 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.141 2003-10-04 11:21:47 jlgijsbers Exp $ +# $Id: client.py,v 1.142 2003-10-22 16:47:55 jlgijsbers Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -844,7 +844,9 @@ otk = self.form['otk'].value uid = self.db.otks.get(otk, 'uid') if uid is None: - self.error_message.append('Invalid One Time Key!') + self.error_message.append("""Invalid One Time Key! +(a Mozilla bug may cause this message to show up erroneously, + please check your email)""") return # re-open the database as "admin"
