Hi Meshach,I have the same issue. I commented out line 333 in /library/textile/Textile.class.php and that osptped the site from escaping any raw html in some areas .$text = $this->encode_html($text, 0);to//$text = $this->encode_html($text, 0);Next, you will also need to comment out line 73 and 74 in:/environment/functions/general.phpfunction clean($str) {$str = preg_replace( /&(?!#[0-9]+;)/s', &', $str);$str = str_replace(array( , ), array( <', >', "'), $str);return $str; } to:function clean($str) {//$str = preg_replace( /&(?!#[0-9]+;)/s', &', $str);//$str = str_replace(array( , ), array( <', >', "'), $str);return $str; } So far so good. I did some very brief testing but it's pretty simple to comment back in if that update messes the site up.RL

