Skip to content

Commit c21e4d6

Browse files
author
Richard Jones
committed
backported metakit fix from HEAD
1 parent a0d2211 commit c21e4d6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ are given with the most recent entry first.
88
- open server logfile unbuffered
99
- revert StringHTMLProperty to not hyperlink text by default
1010
- fixes to CGI form handling
11+
- fix unlink bug in metakit backend
1112

1213

1314
2003-01-10 0.5.4

roundup/backends/back_metakit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def set(self, nodeid, **propvalues):
422422
if self.do_journal and prop.do_journal:
423423
# register the unlink with the old linked node
424424
if oldvalue:
425-
self.db.addjournal(link_class, value, _UNLINK,
425+
self.db.addjournal(link_class, oldvalue, _UNLINK,
426426
(self.classname, str(row.id), key))
427427

428428
# register the link with the newly linked node

0 commit comments

Comments
 (0)