[Plugin: WP VeriteCo Timeline] problems with german umlauts (code update)
-
We found a problem with german umlauts when using the plugin, please see code below how to fix this in your code. Perhaps you could use this in a new version of the plugin:
wp-veriteco-timeline.php
Code Changes:
// Translation of invalid Unicode references range to valid range
$wp_htmltranswinuni = array(
‘–’ => ‘-‘,
‘—’ => ‘—’,
‘’’ => ‘\”,
‘‚’ => ‘,’,
‘“’ => ‘\”‘,
‘”’ => ‘\”‘
);…
//$string .= stripslashes($entry->toJSON());
$string .= $entry->toJSON();
The topic ‘[Plugin: WP VeriteCo Timeline] problems with german umlauts (code update)’ is closed to new replies.