Code

fixed error in cgi/templates.py (sf bug 652089)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 18 Dec 2002 23:21:17 +0000 (23:21 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 18 Dec 2002 23:21:17 +0000 (23:21 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1417 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi/templating.py

index 591e41a580598d318b23729e7317bf30db9056ad..0d6eab2aec15a06905dab2403e6fff8cd6376637 100644 (file)
@@ -6,6 +6,7 @@ are given with the most recent entry first.
 - implemented whole-database locking
 - hyperlinking of special text (url, email, item designator) in messages
 - fixed time default in date.py
+- fixed error in cgi/templates.py (sf bug 652089)
 
 
 2002-12-11 0.5.3
index 2fe6d2390af09d6de265066688afbe0f74884dd1..7e6f36ea1cd9025f71461c49a2a653a8e95badb7 100644 (file)
@@ -1187,9 +1187,9 @@ class MultilinkHTMLProperty(HTMLProperty):
         k = linkcl.labelprop(1)
 
         # make sure we list the current values if they're retired
-        for value in self._value:
-            if value not in options:
-                options.insert(0, value)
+        for val in value:
+            if val not in options:
+                options.insert(0, val)
 
         for optionid in options:
             # get the option value, and if it's None use an empty string