Skip to content

Commit 0299f3f

Browse files
author
Richard Jones
committed
undo regression in 1.4.12: Multilink edit fields lose their values
(thanks Will Maier)
1 parent 0107373 commit 0299f3f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2010-02-?? 1.4.13
5+
6+
Fixed:
7+
- Multilink edit fields lose their values (thanks Will Maier)
8+
9+
410
2010-02-09 1.4.12 (r4455)
511

612
Features:

roundup/cgi/templating.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2164,6 +2164,7 @@ def field(self, size=30, showid=0, **kwargs):
21642164
k = linkcl.labelprop(1)
21652165
value = lookupKeys(linkcl, k, value)
21662166
value = ','.join(value)
2167+
kwargs["value"] = value
21672168

21682169
return self.input(name=self._formname, size=size, **kwargs)
21692170

0 commit comments

Comments
 (0)