Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 2320:41bc4936e115
fix Interval editing [SF#954891]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 16 May 2004 21:57:04 +0000 |
| parents | 7c8d2e9a0566 |
| children | da4444e593f4 |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Sun May 16 21:49:30 2004 +0000 +++ b/roundup/cgi/templating.py Sun May 16 21:57:04 2004 +0000 @@ -1387,7 +1387,7 @@ else: value = cgi.escape(str(self._value)) - if is_edit_ok(): + if self.is_edit_ok(): value = '"'.join(value.split('"')) return self.input(name=self._formname,value=value,size=size)
