[Multishop-devel] osc_m2/catalog/admin/includes/functions html_output.php,1.1,1.2
Brought to you by:
tropic
From: Piero T. <tr...@us...> - 2005-12-04 10:34:43
|
Update of /cvsroot/multishop/osc_m2/catalog/admin/includes/functions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18888 Modified Files: html_output.php Log Message: update to oscommerce-20051113 Index: html_output.php =================================================================== RCS file: /cvsroot/multishop/osc_m2/catalog/admin/includes/functions/html_output.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** html_output.php 23 Nov 2005 11:20:20 -0000 1.1 --- html_output.php 4 Dec 2005 10:34:35 -0000 1.2 *************** *** 273,281 **** $field .= '>'; ! if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) { ! $field .= stripslashes($GLOBALS[$name]); ! } elseif (tep_not_null($text)) { ! $field .= $text; ! } $field .= '</textarea>'; --- 273,281 ---- $field .= '>'; ! if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) { ! $field .= tep_output_string_protected(stripslashes($GLOBALS[$name])); ! } elseif (tep_not_null($text)) { ! $field .= tep_output_string_protected($text); ! } $field .= '</textarea>'; |