LisaC Posted September 9, 2006 Share Posted September 9, 2006 Please see the attached image. There is a "warning" on it. Any ideas what it could be for? I checked the string and code in the section it says but I can't find the typo or error. Here is the code on that specific php file (geral.php). Here are lines 35 - 50 // Parse the data used in the html tags to ensure the tags will not break function tep_parse_input_field_data($data, $parse) { return strtr(trim($data), $parse); } function tep_output_string($string, $translate = false, $protected = false) { if ($protected == true) { return htmlspecialchars($string); } else { if ($translate == false) { return tep_parse_input_field_data($string, array('"' => '"')); } else { return tep_parse_input_field_data($string, $translate); } } } This error is not hindering teh process or causing any troubles but I am curious as to what it might be for. Thanks so much for looking Link to comment Share on other sites More sharing options...
LisaC Posted September 9, 2006 Author Share Posted September 9, 2006 I got this fixed thank you. Please disregard this post Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.