From 12b751ddc9195b3b61d8a8cb9f8abae708a2d319 Mon Sep 17 00:00:00 2001 From: Philippe Le Brouster Date: Sat, 13 Jun 2015 21:05:57 +0200 Subject: [PATCH] Fix the config.php owner check for console.php The config directory must be taken from OC::$configDir Minor fix - Remove uneeded slash in the configdir path. --- console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.php b/console.php index 3fee81c70c7..a5808f4a06a 100644 --- a/console.php +++ b/console.php @@ -54,7 +54,7 @@ try { exit(0); } $user = posix_getpwuid(posix_getuid()); - $configUser = posix_getpwuid(fileowner(OC::$SERVERROOT . '/config/config.php')); + $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php')); if ($user['name'] !== $configUser['name']) { echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL; echo "Current user: " . $user['name'] . PHP_EOL;