summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/core.xml
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2018-03-23 23:04:05 +0100
committerYann Ylavic <ylavic@apache.org>2018-03-23 23:04:05 +0100
commit3935a0b5ecbe6e5c58589686a051cf156c196261 (patch)
tree37e4bc31e7530c3f9330b1a64d43ca4ebc5bcd59 /docs/manual/mod/core.xml
parentAdd compatibility note for the 3rd argument of 'RewriteMap' (diff)
downloadapache2-3935a0b5ecbe6e5c58589686a051cf156c196261.tar.xz
apache2-3935a0b5ecbe6e5c58589686a051cf156c196261.zip
Follow up to r1827599: don't mention EXTENDED.
It does/can *not* work as expected for now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1827604 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/core.xml')
-rw-r--r--docs/manual/mod/core.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index d9feefba70..e8718c6ef9 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -4148,8 +4148,6 @@ Protocols h2 http/1.1
<dt><code>DOLLAR_ENDONLY</code></dt>
<dd>'$' matches at end of subject string only.</dd>
-
- <dt><code>EXTENDED</code></dt>
<dd>.</dd>
</dl>
<highlight language="config">
@@ -4159,8 +4157,8 @@ RegexDefaultOptions +ICASE +DOLLAR_ENDONLY
# Remove the ICASE option, but keep all the other already set options
RegexDefaultOptions -ICASE
...
-# Set the default option to EXTENDED, resetting any other option
-RegexDefaultOptions EXTENDED
+# Set the default option to DOTALL, resetting any other option
+RegexDefaultOptions DOTALL
...
# Reset all defined option
RegexDefaultOptions none