Subversion Repositories munaweb

Rev

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

Rev 54 Rev 55
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 == '%' ||
844
        c.charCodeAt(0) > 127) {
845
        c.charCodeAt(0) > 127) {
845
            c = encodeURIComponent(c);
846
            c = encodeURIComponent(c);
846
    }
847
    }
847
        
848
        
848
    return c;
849
    return c;