summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-05-11 15:34:54 +0200
committerLukas Reschke <lukas@statuscode.ch>2014-05-11 15:34:54 +0200
commit60f6d82dcddd4bdc3793fb663bbd1a11cbed4497 (patch)
tree72a8cba1125d38e2404a723977486a6e49f52e00 /apps
parentb6d76e9985105a245daf63f60b47e82df283019d (diff)
downloadnextcloud-server-60f6d82dcddd4bdc3793fb663bbd1a11cbed4497.tar.gz
nextcloud-server-60f6d82dcddd4bdc3793fb663bbd1a11cbed4497.zip
$owner is not defined here
Fixes https://github.com/owncloud/core/issues/8539
Diffstat (limited to 'apps')
-rw-r--r--apps/files/triggerupdate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/triggerupdate.php b/apps/files/triggerupdate.php
index a37b9823add..3f85da9913b 100644
--- a/apps/files/triggerupdate.php
+++ b/apps/files/triggerupdate.php
@@ -6,7 +6,7 @@ if (OC::$CLI) {
if (count($argv) === 2) {
$file = $argv[1];
list(, $user) = explode('/', $file);
- OCP\JSON::checkUserExists($owner);
+ OCP\JSON::checkUserExists($user);
OC_Util::setupFS($user);
$view = new \OC\Files\View('');
/**