You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
873 B
17 lines
873 B
diff --git a/server/core.c b/server/core.c |
|
index f60e8fa..245fcb6 100644 |
|
--- a/server/core.c |
|
+++ b/server/core.c |
|
@@ -2061,6 +2061,12 @@ AP_CORE_DECLARE_NONSTD(const char *) ap_limit_section(cmd_parms *cmd, |
|
/* method has not been registered yet, but resorce restriction |
|
* is always checked before method handling, so register it. |
|
*/ |
|
+ if (cmd->pool == cmd->temp_pool) { |
|
+ /* In .htaccess, we can't globally register new methods. */ |
|
+ return apr_psprintf(cmd->pool, "Could not register method '%s' " |
|
+ "for %s from .htaccess configuration", |
|
+ method, cmd->cmd->name); |
|
+ } |
|
methnum = ap_method_register(cmd->pool, |
|
apr_pstrdup(cmd->pool, method)); |
|
}
|
|
|