2
*** BUMP***
this is whats in the module.textsanitizer.php around line 45.. I am not a PHP guru so thought someone might get an idea from this.
************************
class MyTextSanitizer
{
/**
* @var array
*/
var $smileys = array();
/**
*
*/
var $censorConf;
/*
* Constructor of this class
*
* Gets allowed html tags from admin config settings
*
should not be allowed since nl2br will be used
* when storing data.
*
* @access private
*
* @todo Sofar, this does nuttin'
*/
function MyTextSanitizer()
{
}
********************************