Skip to content

Commit 1c82bf5

Browse files
author
Richard Jones
committed
didn't clean up fully after debugging :(
1 parent 27654c9 commit 1c82bf5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

roundup/cgi_client.py

Lines changed: 6 additions & 2 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.23 2001-08-29 04:47:18 richard Exp $
18+
# $Id: cgi_client.py,v 1.24 2001-08-29 04:49:39 richard Exp $
1919

2020
import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes
2121

@@ -328,7 +328,7 @@ def _post_editnode(self, nid, changes=None):
328328

329329
# now create the message
330330
content = '\n'.join(m)
331-
message_id = self.db.msg.create(author='admin', #self.getuid(),
331+
message_id = self.db.msg.create(author=self.getuid(),
332332
recipients=[], date=date.Date('.'), summary=summary,
333333
content=content)
334334
messages = cl.get(nid, 'messages')
@@ -513,6 +513,10 @@ def parsePropsFromForm(cl, form, nodeid=0):
513513

514514
#
515515
# $Log: not supported by cvs2svn $
516+
# Revision 1.23 2001/08/29 04:47:18 richard
517+
# Fixed CGI client change messages so they actually include the properties
518+
# changed (again).
519+
#
516520
# Revision 1.22 2001/08/17 00:08:10 richard
517521
# reverted back to sending messages always regardless of who is doing the web
518522
# edit. change notes weren't being saved. bleah. hackish.

0 commit comments

Comments
 (0)