Mercurial > p > roundup > code
diff roundup/cgi/actions.py @ 2248:cd7e6d6288c6
fixed rego from email address [SF#947414]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 04 May 2004 05:56:54 +0000 |
| parents | ac4f295499a4 |
| children | 46d9cc1e4fc4 |
line wrap: on
line diff
--- a/roundup/cgi/actions.py Tue May 04 00:16:07 2004 +0000 +++ b/roundup/cgi/actions.py Tue May 04 05:56:54 2004 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.24 2004-05-02 23:16:05 richard Exp $ +#$Id: actions.py,v 1.25 2004-05-04 05:56:54 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random @@ -746,7 +746,7 @@ """ % {'name': props['username'], 'tracker': tracker_name, 'url': self.base, 'otk': otk, 'tracker_email': tracker_email} if not self.client.standard_message([props['address']], subject, - body, tracker_email): + body, (tracker_name, tracker_email)): return # commit changes to the database
