How to disable HTML in PLIGG comments

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 !