summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6e4aacf)
raw | patch | inline | side by side (parent: 6e4aacf)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 18 Dec 2002 23:21:17 +0000 (23:21 +0000) | ||
committer | richard <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 | patch | blob | history | |
roundup/cgi/templating.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 591e41a580598d318b23729e7317bf30db9056ad..0d6eab2aec15a06905dab2403e6fff8cd6376637 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- 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)
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