diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-15 06:30:57 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-15 06:30:57 +0100 |
commit | 0131b54976afdd3662475e7e84ad66c2997c0287 (patch) | |
tree | b5c8bb7c808dba9c79931a04a39efc3757cb92fe /extensions/Splinter/template/en/default/admin | |
parent | d936a21ce97276c731abc6830a0ef3c0539e51e9 (diff) | |
download | bugzilla-0131b54976afdd3662475e7e84ad66c2997c0287.tar.gz bugzilla-0131b54976afdd3662475e7e84ad66c2997c0287.tar.xz |
Bug 850675: editing the splinter url always appends a /, which results in a broken url
Diffstat (limited to 'extensions/Splinter/template/en/default/admin')
-rw-r--r-- | extensions/Splinter/template/en/default/admin/params/splinter.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Splinter/template/en/default/admin/params/splinter.html.tmpl b/extensions/Splinter/template/en/default/admin/params/splinter.html.tmpl index c92c62e5d..b28a4bd37 100644 --- a/extensions/Splinter/template/en/default/admin/params/splinter.html.tmpl +++ b/extensions/Splinter/template/en/default/admin/params/splinter.html.tmpl @@ -32,7 +32,7 @@ "the following lines to the .htaccess for Bugzilla: " _ "<pre>" _ "RewriteEngine On\n" _ - "RewriteRule ^review(\?(.*))? page.cgi?id=splinter.html&$2 [L]" _ + "RewriteRule ^review(.*) page.cgi?id=splinter.html\$1 [QSA]" _ "</pre>" } %] |