I'm merging the following 2 files:
file 1: /includes/functions/html_output.php in
http://www.zen-cart.com/forum/showpo...0&postcount=10
and
file 2:/includes/functions/html_output.php in
the PHP 5.3 patch for v1.3.8a
Which one should I choose :
orPHP Code:if ( $value == '~*~*#' && (isset($GLOBALS[$name]) && is_string($GLOBALS[$name])) && ($reinsert_value == true) ) {
PHP Code:if ( (isset($GLOBALS[$name]) && is_string($GLOBALS[$name])) && ($reinsert_value == true) ) {
Which one should I choose :
orPHP Code:} elseif ($value != '~*~*#' && zen_not_null($value)) {
PHP Code:} elseif (zen_not_null($value)) {
Amanda



