Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-08-19 22:32:56 +0300
committerMorris Jobke <hey@morrisjobke.de>2015-08-19 22:32:56 +0300
commit29decf698c7699fdc02b96cde423e37da389f8fa (patch)
tree6a2a3b5ba78209e02f56c440eeff4772ce00cdaa /lib/private/app.php
parent08161027c47284102c44b36cb3253702df4c29a8 (diff)
[app management] fix dependency check on install
Diffstat (limited to 'lib/private/app.php')
-rw-r--r--lib/private/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/app.php b/lib/private/app.php
index 9de1c66ee55..f1a1d27ae66 100644
--- a/lib/private/app.php
+++ b/lib/private/app.php
@@ -1139,7 +1139,7 @@ class OC_App {
// check for required dependencies
$dependencyAnalyzer = new DependencyAnalyzer(new Platform($config), $l);
- $missing = $dependencyAnalyzer->analyze($app);
+ $missing = $dependencyAnalyzer->analyze($info);
if (!empty($missing)) {
$missingMsg = join(PHP_EOL, $missing);
throw new \Exception(