Thread Starter
jroy
(@jroy)
I also try on Firefox, same problem.
I got these error messages:
Warning: strip_tags() expects parameter 1 to be string, array given in /www/mydomainname/www/wp-includes/formatting.php on line 2773
Warning: Cannot modify header information – headers already sent by (output started at /www/mydomainname/www/wp-includes/formatting.php:2773) in /www/mydomainname/www/wp-admin/includes/export.php on line 44
Warning: Cannot modify header information – headers already sent by (output started at /www/mydomainname/www/wp-includes/formatting.php:2773) in /www/mydomainname/www/wp-admin/includes/export.php on line 45
Warning: Cannot modify header information – headers already sent by (output started at /www/mydomainname/www/wp-includes/formatting.php:2773) in /www/mydomainname/www/wp-admin/includes/export.php on line 46
Thread Starter
jroy
(@jroy)
I fix the warning message and it works now :
change
$string = strip_tags($string);
by
$string = strip_tags((string)$string);
it happens only if display_errors is ON.