Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Can someone help me on check out?


LisaC

Recommended Posts

Please see the attached image. There is a "warning" on it. Any ideas what it could be for?

warning.jpg

 

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...