summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aa6d838)
raw | patch | inline | side by side (parent: aa6d838)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 8 Jan 2002 04:03:47 +0000 (04:03 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 8 Jan 2002 04:03:47 +0000 (04:03 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@510 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi_client.py | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 86177bb6b257e0978b35d5d4970cb982d5e404f7..d1fd3609eb4e8c1655c1162d440684ae46a4f80a 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: cgi_client.py,v 1.90 2002-01-08 03:56:55 richard Exp $
+# $Id: cgi_client.py,v 1.91 2002-01-08 04:03:47 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
if props.has_key('nosy') and assignedto_id not in props['nosy']:
props['nosy'].append(assignedto_id)
else:
- props['nosy'] = cl.get(self.nodeid, 'nosy')
- props['nosy'].append(assignedto_id)
+ props['nosy'] = [assignedto_id]
def _changenode(self, props):
''' change the node based on the contents of the form
#
# $Log: not supported by cvs2svn $
+# Revision 1.90 2002/01/08 03:56:55 richard
+# Oops, missed this before the beta:
+# . #495392 ] empty nosy -patch
+#
# Revision 1.89 2002/01/07 20:24:45 richard
# *mutter* stupid cutnpaste
#