summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3fa90ca)
raw | patch | inline | side by side (parent: 3fa90ca)
author | rochecompaan <rochecompaan@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 7 Dec 2001 05:59:27 +0000 (05:59 +0000) | ||
committer | rochecompaan <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 | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 3f28d5611840187277ced8adfb1e117030b662b3..b98039f216bd89067bf191336be02d15ce748530 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.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).
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')
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)
#
# $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.