summaryrefslogtreecommitdiffstats
path: root/lib/public/json.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-01-21 11:32:30 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-01-21 11:32:30 +0100
commit23a4d0d44ef8b918f054e7ad608d04b2e9a68995 (patch)
tree97e921688f32f8b5a707e4d81d5486d9793a3558 /lib/public/json.php
parent0f794b6889d05508c86449dacdee3e05bd47d071 (diff)
downloadnextcloud-server-23a4d0d44ef8b918f054e7ad608d04b2e9a68995.tar.gz
nextcloud-server-23a4d0d44ef8b918f054e7ad608d04b2e9a68995.zip
OC_Util::setupFS($user) will create a data dir for the given string - no matter if the user really exists - OCP\JSON::checkUserExists($owner); introduces a ready to use check which will bail out with an JSON error
Diffstat (limited to 'lib/public/json.php')
-rw-r--r--lib/public/json.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/public/json.php b/lib/public/json.php
index 831e3ef1cf6..cd5d233ef90 100644
--- a/lib/public/json.php
+++ b/lib/public/json.php
@@ -167,7 +167,7 @@ class JSON {
* @return string json formatted string if not admin user.
*/
public static function checkAdminUser() {
- return(\OC_JSON::checkAdminUser());
+ \OC_JSON::checkAdminUser();
}
/**
@@ -177,4 +177,12 @@ class JSON {
public static function encode($data) {
return(\OC_JSON::encode($data));
}
+
+ /**
+ * Check is a given user exists - send json error msg if not
+ * @param string $user
+ */
+ public static function checkUserExists($user) {
+ \OC_JSON::checkUserExists($user);
+ }
}