--- mambo/branches/4.6/includes/mambofunc.php 2007/01/14 04:34:55 884 +++ mambo/branches/4.6/includes/mambofunc.php 2007/01/22 11:14:03 892 @@ -66,7 +66,13 @@ * Deprecated - simply code the line below */ function ampReplace( $text ) { - return preg_replace('/(&)([^#]|$)/','&$2', $text); + + $text = str_replace( '&#', '*-*', $text ); + $text = str_replace( '&', '&', $text ); + $text = str_replace( '*-*', '&#', $text ); + + return $text; + //return preg_replace('/(&)([^#]|$)/','&$2', $text); } /**