Code

Fixed small bug that prevented adding issues through the web.
authorrochecompaan <rochecompaan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 7 Dec 2001 05:59:27 +0000 (05:59 +0000)
committerrochecompaan <rochecompaan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 7 Dec 2001 05:59:27 +0000 (05:59 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@448 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/cgi_client.py

index 3f28d5611840187277ced8adfb1e117030b662b3..b98039f216bd89067bf191336be02d15ce748530 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: cgi_client.py,v 1.77 2001-12-06 22:48:29 richard Exp $
+# $Id: cgi_client.py,v 1.78 2001-12-07 05:59:27 rochecompaan Exp $
 
 __doc__ = """
 WWW request handler (also used in the stand-alone server).
@@ -313,7 +313,7 @@ class Client:
                     self.nodeid)
 
                 # set status to chatting if 'unread' or 'resolved'
-                if 'status' not in changed.keys():
+                if not changed.has_key('status'):
                     try:
                         # determine the id of 'unread','resolved' and 'chatting'
                         unread_id = self.db.status.lookup('unread')
@@ -525,7 +525,8 @@ class Client:
             m = [summary]
 
         # append the change note
-        m.append(change_note)
+        if change_note:
+            m.append(change_note)
 
         # now create the message
         content = '\n'.join(m)
@@ -1084,6 +1085,9 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.77  2001/12/06 22:48:29  richard
+# files multilink was being nuked in post_edit_node
+#
 # Revision 1.76  2001/12/05 14:26:44  rochecompaan
 # Removed generation of change note from "sendmessage" in roundupdb.py.
 # The change note is now generated when the message is created.