Changeset 2862

Show
Ignore:
Timestamp:
04/12/07 10:38:18 (2 years ago)
Author:
alberto
Message:

reverting [2843], see #1314 for more info

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/CHANGELOG.txt

    r2852 r2862  
    2727 
    2828* CatWalk now handles customized addRemoveName in SO. #911 by Joost  
    29 * SelectionField now properly renders complex values. #1314 by rick446 
    3029* using base64.decodestring in visitor.py for 2.3 compatibility. #1279 by pnfisher. 
    3130* Config file in quickstarted app now has config option to load identity classes. Thanks to Felix 
  • branches/1.0/turbogears/widgets/forms.py

    r2843 r2862  
    906906                if self._is_option_selected(option[0], d['value']): 
    907907                        option_attrs[self._selected_verb] = self._selected_verb 
    908                 if self._multiple_selection: 
    909                     optlist[i] = (self.validator.from_python(option[0])[0], option[1], option_attrs) 
    910                 else: 
    911                     optlist[i] = (self.validator.from_python(option[0]), option[1], option_attrs) 
     908                optlist[i] = (option[0], option[1], option_attrs) 
    912909            options.extend(optlist) 
    913910            if group: