diff -r 53129849c8cf -r 6464deecaf0e apps/discussion/forms.py
--- a/apps/discussion/forms.py Tue Nov 02 23:22:09 2010 +0100
+++ b/apps/discussion/forms.py Tue Nov 02 23:30:06 2010 +0100
@@ -16,7 +16,8 @@
class CommentForm(forms.Form):
body = CommentNode._meta.get_field('body').formfield()
- subscribe = forms.BooleanField(required=False, initial=True, label=_(u'Subscribe to comments'))
+ if appcheck.watchlist:
+ subscribe = forms.BooleanField(required=False, initial=True, label=_(u'Subscribe to comments'))
reply_to = forms.IntegerField(required=False, widget=forms.HiddenInput)
def __init__(self, *args, **kwargs):