diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-05-06 19:09:03 +0200 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-05-11 17:54:08 +0200 |
commit | ede732577227ec814577f638ebfa3b2b84595041 (patch) | |
tree | efca345620c064db7ef0bd215175aee23bb17805 /lib | |
parent | d8da79cab0838ff9ffb3929a7bf854d8d5dc0797 (diff) | |
download | nextcloud-server-ede732577227ec814577f638ebfa3b2b84595041.tar.gz nextcloud-server-ede732577227ec814577f638ebfa3b2b84595041.zip |
fix broken if
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/appframework/http/dispatcher.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/http/dispatcher.php b/lib/private/appframework/http/dispatcher.php index 9015d650250..dcc0ff05f7d 100644 --- a/lib/private/appframework/http/dispatcher.php +++ b/lib/private/appframework/http/dispatcher.php @@ -138,7 +138,7 @@ class Dispatcher { ( $this->request->method === 'GET' || strpos($this->request->getHeader('Content-Type'), - 'application/x-www-form-urlencoded') !== false) + 'application/x-www-form-urlencoded') !== false ) ) { $value = false; |