UPDATE

Just a quick little bug fix that is not required to be changed but will help make your descriptions and titles display better:

Change lines 318-319 to:

PHP Code:
  $str eregi_replace("[^[:alnum:][:space:].,!()'-_/+=?]"""$str);
  
$str htmlentities($str); 
This is a reversal of the two lines which formerly appeared like this:

PHP Code:
  $str htmlentities($str);
  
$str eregi_replace("[^[:alnum:][:space:].,!()'-_/+=?]"""$str);