a->inherit_before = (over->inherit_before != -1)
? over->inherit_before
: base->inherit_before;
- /* SubstituteInheritBefore was the default behavior until 2.5.x,
- * and may be re-enabled as desired; this original default behavior
- * was to apply inherited subst patterns before locally scoped patterns.
+ /* SubstituteInheritBefore wasn't the default behavior until 2.5.x,
+ * and may be re-disabled as desired; the original default behavior
+ * was to apply inherited subst patterns after locally scoped patterns.
* In later 2.2 and 2.4 versions, SubstituteInheritBefore may be toggled
- * 'off' to follow the corrected/expected behavior, without violating POLS.
+ * 'on' to follow the corrected/expected behavior, without violating POLS.
*/
- if (a->inherit_before == 1) {
+ if (a->inherit_before) {
a->patterns = apr_array_append(p, base->patterns,
over->patterns);
}