Code

undo regression in 1.4.12: Multilink edit fields lose their values (thanks Will Maier)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 19 Feb 2010 05:09:38 +0000 (05:09 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 19 Feb 2010 05:09:38 +0000 (05:09 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4461 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi/templating.py

index 0039f56c42d135da0ac4eae410b468e3bc6abc3c..68d8b7b2cacc73d455eaa56b5dee53a2ec9fb2e8 100644 (file)
@@ -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:
index 2e090416ad08174e4476fa06f1f825a4cb4a4275..7867d3e71375c923effac397ba2eee35068c6ab2 100644 (file)
@@ -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)