i'm afraid using html_entity_decode just for php5 is not good enough:
engine.php function BOLTpageshortcuts()
if (phpversion() > '5.0.0') $link = html_entity_decode($link,
ENT_QUOTES, 'UTF-8');

Even if you can't test with a php 4.xx version you can test by
commenting out the line.

The effect is that at the time of page creation any html entities
entered are not decoded, instead an html entity code like for instance
© is translated to %26copy%3b, leading to a page name which is
different than it would be if it was decoded properly (%c2%a9 for
©).

I think it is unacceptable that different page names get created
because of different php versions. Unless a html entity decoding is
achieved for phpversion() < 5.0.0 I think it would be better to put
the whole feature of entering html entity codes in page name creation
on hold.

~Hans

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to