hi Wordpress Gemeinde
ich habe auch das selbe problem nur ist es bei mir nicht die taxonomy.php sodern die formatting.php in zeile 2773
PHP
Zeile 2762 bis 2779
/**
* Properly strip all HTML tags including script and style
*
* @since 2.9.0
*
* @param string $string String containing HTML tags
* @param bool $remove_breaks optional Whether to remove left over line breaks and white space chars
* @return string The processed string.
*/
function wp_strip_all_tags($string, $remove_breaks = false) {
$string = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $string );
+ $string = strip_tags($string);
if ( $remove_breaks )
$string = preg_replace('/[\r\n\t ]+/', ' ', $string);
return trim($string);
}
Alles anzeigen
Das + ist die zeile 2773
mit der export.php ist es das selbe da sind die zeilen 44, 45, 46 nicht korekt laut fehlermeldung
Meine Wordpress version ist 3.0
hoffe auf eine schnelle antwort