Code: Select all
Warning: Wrong parameter count for trim() in /home/XXX/public_html/inc/functions.php on line 998
Warning: Cannot modify header information - headers already sent by (output started at /home/XXX/public_html/inc/functions.php:998) in /home/XXX/public_html/xml.php on line 34
Warning: Cannot modify header information - headers already sent by (output started at /home/XXX/public_html/inc/functions.php:998) in /home/XXX/public_html/xml.php on line 35
Warning: Cannot modify header information - headers already sent by (output started at /home/XXX/public_html/inc/functions.php:998) in /home/XXX/public_html/xml.php on line 36
Code: Select all
$xml_content = trim(htmlspecialchars(wordwrap($xml_content, 60)), ENT_NOQUOTES, $PMF_LANG['metaCharset']);
Code: Select all
$xml_content = trim(htmlspecialchars(stripslashes(wordwrap($xml_content, 60)), ENT_NOQUOTES, $PMF_LANG['metaCharset']));
Code: Select all
$xml_content = trim(htmlspecialchars(wordwrap($xml_content, 60), ENT_NOQUOTES, $PMF_LANG['metaCharset']));
