Parent Directory
|
Revision Log
|
Patch
--- httpd/httpd/trunk/modules/filters/mod_include.c 2008/03/31 12:29:05 642978
+++ httpd/httpd/trunk/modules/filters/mod_include.c 2008/12/31 02:27:24 730296
@@ -1192,7 +1192,8 @@
echo_text = ap_escape_uri(ctx->dpool, val);
break;
case E_ENTITY:
- echo_text = ap_escape_html(ctx->dpool, val);
+ /* PR#25202: escape anything non-ascii here */
+ echo_text = ap_escape_html2(ctx->dpool, val, 1);
break;
}
| apache@apache.org | ViewVC Help |
| Powered by ViewVC 1.1.2 |