Skip to content

Commit 9e0ddf7

Browse files
author
Johannes Gijsbers
committed
Add a note to the 'Invalid One Time Key' message...
...about Mozilla double-loading the page [SF#827533].
1 parent 990272e commit 9e0ddf7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

roundup/cgi/client.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: client.py,v 1.141 2003-10-04 11:21:47 jlgijsbers Exp $
1+
# $Id: client.py,v 1.142 2003-10-22 16:47:55 jlgijsbers Exp $
22

33
__doc__ = """
44
WWW request handler (also used in the stand-alone server).
@@ -844,7 +844,9 @@ def passResetAction(self):
844844
otk = self.form['otk'].value
845845
uid = self.db.otks.get(otk, 'uid')
846846
if uid is None:
847-
self.error_message.append('Invalid One Time Key!')
847+
self.error_message.append("""Invalid One Time Key!
848+
(a Mozilla bug may cause this message to show up erroneously,
849+
please check your email)""")
848850
return
849851

850852
# re-open the database as "admin"

0 commit comments

Comments
 (0)