|
Nov 28
How to disable HTML in PLIGG comments |
|
|
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
Do you have a PLIGG based website and you need to disable HTML in comments because of all these spam comments? Read further
Edit the following file libs/comment.php at line 34 replace $comment_content = $db->escape($this->content); with $comment_content = $db->escape(strip_tags($this->content)); This will do it !
|
|
|