diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-04 15:52:25 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-04 15:52:25 +0200 |
commit | 2c483fdca21fc32bf6ef8eaf5835e8e4614acd3a (patch) | |
tree | 2266c7b7aae314d24ad45ace42b70737bc6119d6 /apps | |
parent | 0b7d9e2668e3a2e2049eb84f9c49fac41d71d35e (diff) | |
download | nextcloud-server-2c483fdca21fc32bf6ef8eaf5835e8e4614acd3a.tar.gz nextcloud-server-2c483fdca21fc32bf6ef8eaf5835e8e4614acd3a.zip |
Add missing \
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/ajax/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/ajax/list.php b/apps/files_sharing/ajax/list.php index 76926d84b22..c31b3a0e06f 100644 --- a/apps/files_sharing/ajax/list.php +++ b/apps/files_sharing/ajax/list.php @@ -48,7 +48,7 @@ $dir = $data['realPath']; $dir = \OC\Files\Filesystem::normalizePath($dir); if (!\OC\Files\Filesystem::is_dir($dir . '/')) { - \OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); + \OC_Response::setStatus(\OC_Response::STATUS_NOT_FOUND); \OCP\JSON::error(array('success' => false)); exit(); } |