Changes with Apache 2.0.49
+ *) mod_autoindex / core: Don't fail to show filenames containing
+ special characters like '%'. PR 13598. [André Malo]
+
*) mod_status: Report total CPU time accurately when using a threaded
MPM. PR 23795. [Jeff Trawick]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2003/12/14 14:18:35 $]
+Last modified at [$Date: 2003/12/14 16:21:43 $]
Release:
nd replies: But if it can't be 0 the alternatives thereafter make no
sense anymore, right?
- * Let mod_autoindex show filenames containing special characters.
- PR 13598.
- server/request.c: r1.130
- +1: nd, ianh, trawick
-
* mod_setenvif: Fix optimizer to treat regexps as such even if they
only contain anchors like \b. PR 24219.
modules/metadata/mod_setenvif.c: r1.44
rnew->uri = ap_make_full_path(rnew->pool, rnew->uri, r->path_info + 1);
rnew->path_info = apr_pstrdup(rnew->pool, r->path_info);
}
+ rnew->uri = ap_escape_uri(rnew->pool, rnew->uri);
}
else {
udir = ap_make_dirstr_parent(rnew->pool, r->uri);
- rnew->uri = ap_make_full_path(rnew->pool, udir, dirent->name);
+ rnew->uri = ap_escape_uri(rnew->pool, ap_make_full_path(rnew->pool,
+ udir,
+ dirent->name));
}
fdir = ap_make_dirstr_parent(rnew->pool, r->filename);