Commit 5560641d authored by Ivan Tyagov's avatar Ivan Tyagov

Minor variable naming fix.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@17840 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent bc5e15ed
......@@ -1009,13 +1009,13 @@ def Patched_create_datetime_text_sub_form():
display_width=2,
display_maxwidth=2,
max_length=2)
timezone_field = ListField('timezone',
title = "Timezone",
required = 0,
default = 'GMT',
items = gmt_timezones,
size = 1)
sub_form.add_fields([hour, minute, ampm, timezone_field], "time")
timezone = ListField('timezone',
title = "Timezone",
required = 0,
default = 'GMT',
items = gmt_timezones,
size = 1)
sub_form.add_fields([hour, minute, ampm, timezone], "time")
return sub_form
def Patched_create_datetime_list_sub_form():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment