From c124e6ec83a5c05b1883a7209eb2daea0c76742c Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 18 Dec 2002 23:21:17 +0000 Subject: [PATCH] fixed error in cgi/templates.py (sf bug 652089) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1417 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + roundup/cgi/templating.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 591e41a..0d6eab2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/roundup/cgi/templating.py b/roundup/cgi/templating.py index 2fe6d23..7e6f36e 100644 --- a/roundup/cgi/templating.py +++ b/roundup/cgi/templating.py @@ -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 -- 2.30.2