From: richard Date: Fri, 19 Feb 2010 05:09:38 +0000 (+0000) Subject: undo regression in 1.4.12: Multilink edit fields lose their values (thanks Will Maier) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a84534882b21272bd8e77b09c741c765b0f7798a;p=roundup.git undo regression in 1.4.12: Multilink edit fields lose their values (thanks Will Maier) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4461 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 0039f56..68d8b7b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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: diff --git a/roundup/cgi/templating.py b/roundup/cgi/templating.py index 2e09041..7867d3e 100644 --- a/roundup/cgi/templating.py +++ b/roundup/cgi/templating.py @@ -2164,6 +2164,7 @@ class MultilinkHTMLProperty(HTMLProperty): k = linkcl.labelprop(1) value = lookupKeys(linkcl, k, value) value = ','.join(value) + kwargs["value"] = value return self.input(name=self._formname, size=size, **kwargs)