Dec
13
2008
Wordpess 2.7 and PHP4
I upgraded to Wordpress 2.7 but found that the ‘Press This’ bookmarklet returned this error:
Fatal error: Call to undefined function: htmlspecialchars_decode
It identified line 554 of the ‘wp-admin/press-this.php‘ file. As it turns out, ‘htmlspecialchars_decode‘ is a PHP version 5 function call and I’m running PHP version 4. This fix is to edit wp-admin/press-this.php and change the ‘htmlspecialchars_decode‘ call to the version 4 function call ‘html_entity_decode‘.