-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) mod_substitute: Fix configuraton merge order.
+ PR 57641 [<Marc.Stern approach.be>]
+
*) core: Limit accepted chunk-size to 2^63-1 and be strict about chunk-ext
authorized characters. [Yann Ylavic]
subst_dir_conf *base = (subst_dir_conf *) basev;
subst_dir_conf *over = (subst_dir_conf *) overv;
- a->patterns = apr_array_append(p, over->patterns,
- base->patterns);
+ a->patterns = apr_array_append(p, base->patterns,
+ over->patterns);
a->max_line_length = over->max_line_length_set ?
over->max_line_length : base->max_line_length;
a->max_line_length_set = over->max_line_length_set ?