Skip to content

Commit ff2f531

Browse files
author
Richard Jones
committed
missed a parsePropsFromForm in last update
1 parent 3fd9948 commit ff2f531

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

roundup/cgi_client.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: cgi_client.py,v 1.95 2002-01-10 03:39:45 richard Exp $
18+
# $Id: cgi_client.py,v 1.96 2002-01-10 05:26:10 richard Exp $
1919

2020
__doc__ = """
2121
WWW request handler (also used in the stand-alone server).
@@ -400,7 +400,7 @@ def _createnode(self):
400400
''' create a node based on the contents of the form
401401
'''
402402
cl = self.db.classes[self.classname]
403-
props, dummy = parsePropsFromForm(self.db, cl, self.form)
403+
props = parsePropsFromForm(self.db, cl, self.form)
404404

405405
# set status to 'unread' if not specified - a status of '- no
406406
# selection -' doesn't make sense
@@ -595,7 +595,6 @@ def newuser(self, message=None):
595595
if [i for i in keys if i[0] != ':']:
596596
try:
597597
props = parsePropsFromForm(self.db, cl, self.form)
598-
print props
599598
nid = cl.create(**props)
600599
# handle linked nodes
601600
self._post_editnode(nid)
@@ -1179,6 +1178,9 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
11791178

11801179
#
11811180
# $Log: not supported by cvs2svn $
1181+
# Revision 1.95 2002/01/10 03:39:45 richard
1182+
# . fixed some problems with web editing and change detection
1183+
#
11821184
# Revision 1.94 2002/01/09 13:54:21 grubert
11831185
# _add_assignedto_to_nosy did set nosy to assignedto only, no adding.
11841186
#

0 commit comments

Comments
 (0)