From a84534882b21272bd8e77b09c741c765b0f7798a Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 19 Feb 2010 05:09:38 +0000 Subject: [PATCH] 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 --- CHANGES.txt | 6 ++++++ roundup/cgi/templating.py | 1 + 2 files changed, 7 insertions(+) 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) -- 2.30.2