Function decodes ultimix tags.
{
try
{
$Placeholders = array(
'{lfb}' , '{rfb}' , '{eq}' , '[dot_comma]' , '[dot_dot]' , '[nbsp]' , '[eq]' , '{http_host}' ,
'{server_name}' , '[amp]' , '[r]' , '[n]' , '[sharp]' , '[br]'
);
$Replacers = array(
'{' , '}' , '=' , ';' , ':' , ' ' , '=' , @HTTP_HOST ,
$_SERVER[ 'SERVER_NAME' ] , '&' , "\r" , "\n" , '#' , '<br>'
);
$Str = str_replace( $Placeholders , $Replacers , $Str );
$Str = $this->compile_date_tags( $Str );
return( $Str );
}
catch( Exception $e )
{
}
}