-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) core: Fix merging of AllowOverrideList and ContentDigest.
+ [Stefan Fritsch]
+
*) core: Disallow directives in AllowOverrideList which are only allowed
in VirtualHost or server context. These are usually not prepared to be
called in .htaccess files. [Stefan Fritsch]
conf->override_opts = new->override_opts;
}
- if (conf->override_list == NULL) {
+ if (new->override_list != NULL) {
conf->override_list = new->override_list;
}
conf->hostname_lookups = new->hostname_lookups;
}
- if (new->content_md5 == AP_CONTENT_MD5_UNSET) {
+ if (new->content_md5 != AP_CONTENT_MD5_UNSET) {
conf->content_md5 = new->content_md5;
}
if (new->limit_xml_body != AP_LIMIT_UNSET)
conf->limit_xml_body = new->limit_xml_body;
- else
- conf->limit_xml_body = base->limit_xml_body;
if (!conf->sec_file) {
conf->sec_file = new->sec_file;