On Mon, 2005-12-05 at 07:24 -0500, Robert Deaton wrote: > html_entity_decode is another function that was added in PHP 4.3, so > until someone adds a compatability function into WP. > > Matt, Ryan, perhaps its time to drop support for versions prior to > 4.3, this is the second function that I've seen WP rely on lately that > is 4.3 only. 4.1 and 4.2 versions are a few years old already, after > all.
In this case, we shouldn't use html_entity_decode() at all. We want to decode only HTML_SPECIALCHARS, not HTML_ENTITIES. If we decode HTML_ENTITIES, we can get into charset problems when decoding characters beyond the ASCII range. We just need a wp_specialchars_decode() fxn instead. For now I think we can still support 4.1 and above. I'd rather not bump requirements until we absolutely must. Ryan > On 12/5/05, Mike <[EMAIL PROTECTED]> wrote: > > I suggest you download that file and write over it. It should be an > > isolated problem, becuase others would've reported it by now, I hope :P > > > > > > On 12/5/05, Renato Rasmussen <[EMAIL PROTECTED]> wrote: > > > > > > I am having the following problem when trying to edit a posted post! > > > > > > <br /> > > > <b>Fatal error</b>: Call to undefined function: html_entity_decode() in > > <b>/home/martines/webdocs/site/wp-includes/functions- > > formatting.php</b> on line <b>1000</b><br /> > > > > > > -- > > > Renato Lima Rasmussen > > > > > --------------------------------------------------------------------- > > > Graduando em Eng. Agronômica - ESALQ/USP > > > http://renato.limasart.com.br > > > [EMAIL PROTECTED] > > > (19) 9602-8303 > > > _______________________________________________ > > > wp-testers mailing list > > > [email protected] > > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > > > > > > > > > > > > > -- > > -Mike > > _______________________________________________ > > wp-testers mailing list > > [email protected] > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > > > > > -- > --Robert Deaton > http://somethingunpredictable.com > _______________________________________________ > wp-testers mailing list > [email protected] > http://lists.automattic.com/mailman/listinfo/wp-testers _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
