From: Rich Bowen Date: Thu, 14 Dec 2017 19:28:55 +0000 (+0000) Subject: The directive isn't wrong as stated - ie, it does work - but I feel it's X-Git-Tag: 2.5.0-alpha2-ci-test-only~3083 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a70ee418ff8550b29877e5eec4c4b293fbacbf8;p=thirdparty%2Fapache%2Fhttpd.git The directive isn't wrong as stated - ie, it does work - but I feel it's potentially confusing to leave off the closing "|" in the example. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1818196 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_substitute.xml b/docs/manual/mod/mod_substitute.xml index 31ab5fadc2d..7863728bdf7 100644 --- a/docs/manual/mod/mod_substitute.xml +++ b/docs/manual/mod/mod_substitute.xml @@ -100,7 +100,7 @@ <Location "/"> AddOutputFilterByType SUBSTITUTE text/html # "foo=k,bar=k" -> "foo/bar=k" - Substitute "s|foo=(\w+),bar=\1|foo/bar=$1" + Substitute "s|foo=(\w+),bar=\1|foo/bar=$1|" </Location>