diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-07 18:28:56 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-07 18:28:56 +0100 |
commit | f3f55654ce0202bcb00e692ea318b2f165354746 (patch) | |
tree | 1b6ca5bb1c888d373b95a9d94532b185225688a4 /lib/router.php | |
parent | afa1a6d2b3cc1b07c7e99b370ad88f9473c50add (diff) | |
download | nextcloud-server-f3f55654ce0202bcb00e692ea318b2f165354746.tar.gz nextcloud-server-f3f55654ce0202bcb00e692ea318b2f165354746.zip |
Use dummy request method in CLI
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php index 746b68c2c0c..fbf56a1bb42 100644 --- a/lib/router.php +++ b/lib/router.php @@ -23,7 +23,11 @@ class OC_Router { public function __construct() { $baseUrl = OC_Helper::linkTo('', 'index.php'); - $method = $_SERVER['REQUEST_METHOD']; + if (OC::$CLI) { + $method = $_SERVER['REQUEST_METHOD']; + }else{ + $method = 'GET'; + } $host = OC_Request::serverHost(); $schema = OC_Request::serverProtocol(); $this->context = new RequestContext($baseUrl, $method, $host, $schema); |