Mercurial > p > roundup > code
changeset 4356:05a65559d873 1.4.13
undo regression in 1.4.12: Multilink edit fields lose their values
(thanks Will Maier)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 19 Feb 2010 05:09:38 +0000 |
| parents | 83decec7050d |
| children | 13b3155869e0 |
| files | CHANGES.txt roundup/cgi/templating.py |
| diffstat | 2 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Wed Feb 10 03:42:32 2010 +0000 +++ b/CHANGES.txt Fri Feb 19 05:09:38 2010 +0000 @@ -1,6 +1,12 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. +2010-02-?? 1.4.13 + +Fixed: +- Multilink edit fields lose their values (thanks Will Maier) + + 2010-02-09 1.4.12 (r4455) Features:
--- a/roundup/cgi/templating.py Wed Feb 10 03:42:32 2010 +0000 +++ b/roundup/cgi/templating.py Fri Feb 19 05:09:38 2010 +0000 @@ -2164,6 +2164,7 @@ k = linkcl.labelprop(1) value = lookupKeys(linkcl, k, value) value = ','.join(value) + kwargs["value"] = value return self.input(name=self._formname, size=size, **kwargs)
