Skip to content

Commit f220a75

Browse files
author
Richard Jones
committed
Checklist was using wrong name.
1 parent fba01a7 commit f220a75

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CHANGES.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Features:
88
. Added time logging and file uploading to the templates.
99

1010
Fixed:
11-
. Fixed the agument handling for the roundup-admin find command.
12-
. Fixed handling of summary when no note supplied for newblah. Again.
13-
. Fixed detection of no form in htmltemplate Field display.
14-
. Fixed the 2.1-specific gmtime() (no arg) call in roundup.date.
15-
(thanks Paul Wright)
11+
. Argument handling for the roundup-admin find command.
12+
. Handling of summary when no note supplied for newblah. Again.
13+
. Detection of no form in htmltemplate Field display.
14+
. Checklist html template command was setting wrong name.
15+
. 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
1616

1717

1818
2001-07-30 - 0.2.3

roundup/htmltemplate.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: htmltemplate.py,v 1.15 2001-07-30 08:12:17 richard Exp $
1+
# $Id: htmltemplate.py,v 1.16 2001-08-01 03:52:23 richard Exp $
22

33
import os, re, StringIO, urllib, cgi, errno
44

@@ -291,7 +291,7 @@ def __call__(self, property, **args):
291291
else:
292292
checked = ''
293293
l.append('%s:<input type="checkbox" %s name="%s" value="%s">'%(
294-
option, checked, propclass.classname, option))
294+
option, checked, property, option))
295295
return '\n'.join(l)
296296
return '[Checklist: not a link]'
297297

@@ -723,6 +723,9 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
723723

724724
#
725725
# $Log: not supported by cvs2svn $
726+
# Revision 1.15 2001/07/30 08:12:17 richard
727+
# Added time logging and file uploading to the templates.
728+
#
726729
# Revision 1.14 2001/07/30 06:17:45 richard
727730
# Features:
728731
# . Added ability for cgi newblah forms to indicate that the new node

0 commit comments

Comments
 (0)