<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Disabling WYSIWYG on comment field in Drupal 6</title>
	<atom:link href="http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html</link>
	<description>rtraction blog - Web Design, Web Development and Strategic Consulting</description>
	<lastBuildDate>Fri, 02 Dec 2011 15:59:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jaxxed</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-153729</link>
		<dc:creator>Jaxxed</dc:creator>
		<pubDate>Fri, 02 Dec 2011 15:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-153729</guid>
		<description>setting the filter formats to an empty array is a bad idea for security reasons.  It disabled the server-side filtering of submitted text.

Check here for a solution for those users using the wysiwyg module:

http://drupal.org/node/424164#comment-5316996</description>
		<content:encoded><![CDATA[<p>setting the filter formats to an empty array is a bad idea for security reasons.  It disabled the server-side filtering of submitted text.</p>
<p>Check here for a solution for those users using the wysiwyg module:</p>
<p><a href="http://drupal.org/node/424164#comment-5316996" rel="nofollow">http://drupal.org/node/424164#comment-5316996</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gulzi</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-151919</link>
		<dc:creator>gulzi</dc:creator>
		<pubDate>Mon, 28 Nov 2011 11:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-151919</guid>
		<description>good work</description>
		<content:encoded><![CDATA[<p>good work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandan Tyagi</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-143687</link>
		<dc:creator>Chandan Tyagi</dc:creator>
		<pubDate>Fri, 04 Nov 2011 07:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-143687</guid>
		<description>Thanks Nitin Garg(Reply number 13), your suggestion worked for me.</description>
		<content:encoded><![CDATA[<p>Thanks Nitin Garg(Reply number 13), your suggestion worked for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Pasieka</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-81822</link>
		<dc:creator>David Pasieka</dc:creator>
		<pubDate>Wed, 23 Feb 2011 19:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-81822</guid>
		<description>Regarding replies #13 and #20: it is never a good idea to edit any part of Drupal core directly (including the &quot;Core - optional&quot; modules) being that your changes will be overwritten as soon as you do any updates to core. Also, if you run into a conflict between core and another module due to your altered code, it would be much easier to solve if your customized code was in a separate place. 

Best practice is to make a small custom module as has been suggested above, or in some cases you can also integrate the code into the template.php file in your theme.</description>
		<content:encoded><![CDATA[<p>Regarding replies #13 and #20: it is never a good idea to edit any part of Drupal core directly (including the &#8220;Core &#8211; optional&#8221; modules) being that your changes will be overwritten as soon as you do any updates to core. Also, if you run into a conflict between core and another module due to your altered code, it would be much easier to solve if your customized code was in a separate place. </p>
<p>Best practice is to make a small custom module as has been suggested above, or in some cases you can also integrate the code into the template.php file in your theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billy</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-73521</link>
		<dc:creator>Billy</dc:creator>
		<pubDate>Mon, 17 Jan 2011 08:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-73521</guid>
		<description>Reply number 13 worked for me.  It was quick and easy.  Thanks!

In comment.module file search for: 
$form[&#039;comment_filter&#039;][&#039;format&#039;] = filter_form($edit[&#039;format&#039;]);

Then replace it with: 
$form[&#039;comment_filter&#039;][&#039;format&#039;] = array();

Save the file and the issue should be resolved.</description>
		<content:encoded><![CDATA[<p>Reply number 13 worked for me.  It was quick and easy.  Thanks!</p>
<p>In comment.module file search for:<br />
$form['comment_filter']['format'] = filter_form($edit['format']);</p>
<p>Then replace it with:<br />
$form['comment_filter']['format'] = array();</p>
<p>Save the file and the issue should be resolved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-60622</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Thu, 11 Nov 2010 23:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-60622</guid>
		<description>You could create a new input filter for your WYSIWYG that has limited input and then set that filter for use on your comments</description>
		<content:encoded><![CDATA[<p>You could create a new input filter for your WYSIWYG that has limited input and then set that filter for use on your comments</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-51603</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 11 Sep 2010 06:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-51603</guid>
		<description>You&#039;re awesome.  Just wasted 2 hours trying to deal with tinymce and this was the trick.  Cheers.</description>
		<content:encoded><![CDATA[<p>You&#8217;re awesome.  Just wasted 2 hours trying to deal with tinymce and this was the trick.  Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Triactol Review</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-49677</link>
		<dc:creator>Triactol Review</dc:creator>
		<pubDate>Sat, 28 Aug 2010 09:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-49677</guid>
		<description>Thank you, it work good for me to :D</description>
		<content:encoded><![CDATA[<p>Thank you, it work good for me to <img src='http://www.rtraction.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ecommerce Canada &#124; Asciicart</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-47318</link>
		<dc:creator>Ecommerce Canada &#124; Asciicart</dc:creator>
		<pubDate>Wed, 04 Aug 2010 11:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-47318</guid>
		<description>It works for me as well... Thanks mate</description>
		<content:encoded><![CDATA[<p>It works for me as well&#8230; Thanks mate</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kawika</title>
		<link>http://www.rtraction.com/blog/devit/disabling-wysiwyg-on-comment-field-in-drupal-6.html/comment-page-1#comment-46469</link>
		<dc:creator>Kawika</dc:creator>
		<pubDate>Mon, 26 Jul 2010 09:35:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=289#comment-46469</guid>
		<description>The custom module code worked for me.  Thanks!</description>
		<content:encoded><![CDATA[<p>The custom module code worked for me.  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

