Skip to content

Commit

Permalink
Bugfix: CTK.RadioGroupCfg's render included a duplicated HTML id.
Browse files Browse the repository at this point in the history
git-svn-id: svn://cherokee-project.com/CTK/trunk@6793 5dc97367-97f1-0310-9951-d761b3857238
  • Loading branch information
alobbs committed Aug 7, 2011
1 parent af4de96 commit 7ad401f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CTK/Radio.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__ (self, key, options, _props={}):
self._options = options

if not 'id' in self.props:
self.props['id'] = 'RadioGroup_%s' %(self.uniq_id)
self.id = 'RadioGroup_%s' %(self.uniq_id)

cfg_value = cfg.get_val (key)

Expand Down

0 comments on commit 7ad401f

Please sign in to comment.