Skip to content

Commit ab55b50

Browse files
author
Richard Jones
committed
merge from maint-0-8
1 parent 8b2f256 commit ab55b50

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Feature:
1111
2005-??-?? 0.8.4
1212
Fixed:
1313
- extra CRs in CSV export files on Windows platform (sf bug 1195742)
14+
- activity RDBMS columns were being reported in changes
1415

1516

1617
2005-05-02 0.8.3

roundup/backends/rdbms_common.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: rdbms_common.py,v 1.154 2005-05-02 05:48:59 richard Exp $
1+
# $Id: rdbms_common.py,v 1.155 2005-05-18 05:21:14 richard Exp $
22
''' Relational database (SQL) backend common code.
33
44
Basics:
@@ -1708,9 +1708,14 @@ def set_inner(self, nodeid, **propvalues):
17081708
propvalues['activity'] = date.Date()
17091709
propvalues['actor'] = self.db.getuid()
17101710

1711-
# do the set, and journal it
1711+
# do the set
17121712
self.db.setnode(self.classname, nodeid, propvalues, multilink_changes)
17131713

1714+
# remove the activity props now they're handled
1715+
del propvalues['activity']
1716+
del propvalues['actor']
1717+
1718+
# journal the set
17141719
if self.do_journal:
17151720
self.db.addjournal(self.classname, nodeid, ''"set", journalvalues)
17161721

0 commit comments

Comments
 (0)