Changes with Apache 2.4.5
+ * mod_include: Use new ap_expr for 'elif', like 'if',
+ if legacy parser is not specified. PR 54548 [Tom Donovan]
Changes with Apache 2.4.4
2.4.x patch: trunk patch applies.
+1: wrowe, covener
- * mod_include: Use new ap_expr for 'elif', like 'if', if legacy parser is not specified. [PR 54548]
- trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1449479
- +1: tdonovan,
- +1: covener (please add w/ CHANGES in 2.4), sf
-
* mod_heartmonitor/mod_lbmethod_heartbeat: Respect DefaultRuntimeDir for
storage path; these have a directive to configure this location
and THIS CHANGE WILL BREAK PRACTICALLY ALL EXISTING 2.4 CONFIGURATIONS
return APR_SUCCESS;
}
- expr_ret = parse_expr(ctx, expr, &was_error);
+ if (ctx->intern->legacy_expr)
+ expr_ret = parse_expr(ctx, expr, &was_error);
+ else
+ expr_ret = parse_ap_expr(ctx, expr, &was_error);
if (was_error) {
SSI_CREATE_ERROR_BUCKET(ctx, f, bb);