Comment 4 for bug 1042836

Revision history for this message
Maurits van Rees (maurits-vanrees) wrote :

Done in r129047 on branch 2.2 and merged to trunk. This was the change, in DiscussionTool.py:

+ if allowDiscussion in ('True', 'true', 'on'):
+ allowDiscussion = True
+ elif allowDiscussion in ('False', 'false', 'off'):
+ allowDiscussion = False
             content.allow_discussion = bool(int(allowDiscussion))