diff options
author | Juan Pablo Villafáñez <jvillafanez@solidgear.es> | 2016-06-07 18:25:17 +0200 |
---|---|---|
committer | Juan Pablo Villafáñez <jvillafanez@solidgear.es> | 2016-06-07 18:25:17 +0200 |
commit | 110edd3d3ca37d496b54c651ab049cbaab503423 (patch) | |
tree | 5a7e2c14d10cec974487c86e748902cdf82032a2 /apps/files_external/lib/config.php | |
parent | 8526bbb347a7b1ea18b225b4dda40029534636db (diff) | |
download | nextcloud-server-110edd3d3ca37d496b54c651ab049cbaab503423.tar.gz nextcloud-server-110edd3d3ca37d496b54c651ab049cbaab503423.zip |
Rename variable
Diffstat (limited to 'apps/files_external/lib/config.php')
-rw-r--r-- | apps/files_external/lib/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 51d62449782..95220f86cf7 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -215,7 +215,7 @@ class OC_Mount_Config { * @return int see self::STATUS_* * @throws Exception */ - public static function getBackendStatus($class, $options, $isPersonal, $origin = null) { + public static function getBackendStatus($class, $options, $isPersonal, $testOnly = null) { if (self::$skipTest) { return StorageNotAvailableException::STATUS_SUCCESS; } @@ -228,7 +228,7 @@ class OC_Mount_Config { $storage = new $class($options); try { - $result = $storage->test($isPersonal, $origin); + $result = $storage->test($isPersonal, $testOnly); $storage->setAvailability($result); if ($result) { return StorageNotAvailableException::STATUS_SUCCESS; |