> calls BOLTutf2url(). I tried adding there $x = html_entity_decode($x);
> before $x = urlencode($x);, but the html_entity_decode keeps failing
> me, not sure why!
got the decode working in BOLTutf2url() with
$x = html_entity_decode($x, ENT_QUOTES, 'UTF-8');
$x = urlencode($x);
$x = strtr($x, $BOLTutfEscape);
return $x;
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---