file_names no longer escapes . in url's to be more compliant with php standards

svn path=/trunk/boinc/; revision=240
This commit is contained in:
Michael Gary 2002-07-23 20:51:57 +00:00
parent 48de731577
commit f7aa0425e4
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static void escape_url(char *in, char* out) {
fprintf(stderr, "error: escape_url: unexpected NULL pointer out\n");
}
for (x=0, y=0; in[x]; ++x) {
if (isalnum(in[x])) {
if (isalnum(in[x]) || in[x]=='.') {
out[y] = in[x];
++y;
}