mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Fix charset translation breakage on EBCDIC machines... the core turned
on buff's translation by default, but mod_charset_lite (when configured to do so) turned on its own filter-based translation, resulting in gibberish. To be determined... whether or not mod_charset_lite should enable translation of text objects by default (a la 1.3)... probably... for now you have to tell mod_charset_lite to translate. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86135 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1388,7 +1388,6 @@ static request_rec *internal_internal_redirect(const char *new_uri, request_rec
|
||||
|
||||
#ifdef APACHE_XLATE
|
||||
new->rrx = apr_pcalloc(new->pool, sizeof(struct ap_rr_xlate));
|
||||
ap_set_content_xlate(new, 1, ap_locale_to_ascii);
|
||||
ap_set_content_xlate(new, 0, ap_locale_from_ascii);
|
||||
#endif /*APACHE_XLATE*/
|
||||
|
||||
|
Reference in New Issue
Block a user