Commit info for scoop/lib/Scoop/Comments:

Modified Files:
	Post.pm 
Log Message:
Fix for bug #18 and various other auto-format and spellchecker formatting bugs.
--hulver


Index: Post.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Comments/Post.pm,v
retrieving revision 1.66
retrieving revision 1.67
diff -r1.66 -r1.67
221,222c221,222
< 	$subject =~ s/&amp;/&/g;
< 	$subject =~ s/&/&amp;/g;	
---
> 	#$subject =~ s/&amp;/&/g;
> 	#$subject =~ s/&/&amp;/g;	
224,225c224,225
< 	$comment =~ s/&amp;/&/g;
< 	$comment =~ s/&/&amp;/g;
---
> 	#$comment =~ s/&amp;/&/g;
> 	#$comment =~ s/&/&amp;/g;
227,228c227,230
< 	$subject =~ s/\%\%/&#37;&#37;/g;
< 	$comment =~ s/\%\%/&#37;&#37;/g;
---
> 	#$subject =~ s/\%\%/&#37;&#37;/g;
> 	#$comment =~ s/\%\%/&#37;&#37;/g;
> 	$comment = $S->comment_text($comment);
> 	$subject = $S->comment_text($subject);
230c232
< 	$subject =~ s/"/&quot;/g;
---
> 	#$subject =~ s/"/&quot;/g;
447c449
< 	$text =~ s/&amp;/&/g;
---
> 	#$text =~ s/&amp;/&/g;
449a452,454
> 	$text =~ s/</&lt;/g;
> 	$text =~ s/>/&gt;/g;
> 	$text =~ s/"/&quot;/g;
519c524
< 	$subject =~ s/&amp;/&/g;
---
> 	#$subject =~ s/&amp;/&/g;