From: jlgijsbers Date: Wed, 22 Oct 2003 16:47:55 +0000 (+0000) Subject: Add a note to the 'Invalid One Time Key' message about Mozilla X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=df948e42e673c41945b204d02af58d36ef0dbf6c;p=roundup.git Add a note to the 'Invalid One Time Key' message about Mozilla double-loading the page (bug #827533). git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1926 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index d4499bb..0192693 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -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 @@ reply's additional "Re:" is ok), 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"