Subversion Repositories munaweb

Rev

Rev 53 | Rev 55 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 53 Rev 54
Line 839... Line 839...
839
    if (c == '?' ||
839
    if (c == '?' ||
840
        c == '&' ||
840
        c == '&' ||
841
        c == '=' ||
841
        c == '=' ||
842
        c == '+' ||
842
        c == '+' ||
843
        c == '$' ||
843
        c == '$' ||
844
        c.charCodeAt(0) > 255) {
844
        c.charCodeAt(0) > 127) {
845
            c = encodeURIComponent(c);
845
            c = encodeURIComponent(c);
846
    }
846
    }
847
        
847
        
848
    return c;
848
    return c;
849
}
849
}