You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I was browsing your code and found this in the escapeString function:
//for double quote
if ( str.indexOf("\"") != -1 )
{
//you are replacing single quote
//str = str.replace("\'", "\\"+"\"");
//surely you want this:
//str = str.replace("\"", "\\"+"\"");
}
best regards
Lukasz 'Severiaan' Grela
Original issue reported on code.google.com by [email protected] on 27 May 2011 at 9:44
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 27 May 2011 at 9:44The text was updated successfully, but these errors were encountered: