You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Twitter Development Talk
When I do an update and use a character like "é" within the message
the message gets truncated.
For example when I update with "test1 é test2" twitter will only
display "test1 "
The character is converted to %e9 with the php function urlencode.
I could use htmlentities() but that causes errors in snitter and
twitterific.
Has someone got an idea?
dec...@red-bean.com
unread,
Jan 16, 2008, 3:07:13 PM1/16/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Twitter Development Talk
On Jan 15, 7:35 am, maarten.vliegenth...@gmail.com wrote:
> The character is converted to %e9 with the php function urlencode.
This byte is invalid UTF-8 -- you're encoding the character in
Latin-1. Use UTF-8 instead.