diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-21 17:56:00 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-21 17:56:00 +0200 |
commit | 87e10f9e6a0907adf20538f09159274e6b9ca429 (patch) | |
tree | 821c99e73b518064dc1e8b966e31416babf80fcf /lib/public | |
parent | 4d556a3ade39f38eb4b2ca3253863e3f86c7c69b (diff) | |
download | nextcloud-server-87e10f9e6a0907adf20538f09159274e6b9ca429.tar.gz nextcloud-server-87e10f9e6a0907adf20538f09159274e6b9ca429.zip |
OC_OCS_Response is deprecated
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/AppFramework/Http/OCSResponse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/AppFramework/Http/OCSResponse.php b/lib/public/AppFramework/Http/OCSResponse.php index 8614e76805f..ee1207f1217 100644 --- a/lib/public/AppFramework/Http/OCSResponse.php +++ b/lib/public/AppFramework/Http/OCSResponse.php @@ -83,7 +83,7 @@ class OCSResponse extends Response { * @suppress PhanDeprecatedClass */ public function render() { - $r = new \OC_OCS_Result($this->data, $this->statuscode, $this->message); + $r = new \OC\OCS\Result($this->data, $this->statuscode, $this->message); $r->setTotalItems($this->itemscount); $r->setItemsPerPage($this->itemsperpage); |