Commit info for scoop/lib/Scoop/Comments:

Modified Files:
	Post.pm 
Log Message:
Added two vars: hide_comment_allowed_html and hide_story_allowed_html, 
boolean. Set true to suppress the "allowed HTML" line in comment and story 
posting pages, for sites with highly nontechnical users. It scares them.


Index: Post.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Comments/Post.pm,v
retrieving revision 1.64
retrieving revision 1.65
diff -r1.64 -r1.65
250c250,251
< 	my $allow_tags = $S->html_checker->allowed_html_as_string('comment');
---
> 	my $allow_tags = $S->html_checker->allowed_html_as_string('comment') 
> 		unless ($S->{UI}->{VARS}->{hide_comment_allowed_html});