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
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-08-19 22:32:56 +0300
committerMorris Jobke <hey@morrisjobke.de>2015-08-25 15:24:45 +0300
commitef4abb39a53e4726436f6534cd7629ec05b8d189 (patch)
tree747120464ebab266478973f73afda3eeef21ab03 /lib
parent12d70eb959cff7f5948a5a6c0ccd25ebd99ef125 (diff)
[app management] fix dependency check on install
Diffstat (limited to 'lib')
-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 6f0abf58e17..11040840179 100644
--- a/lib/private/app.php
+++ b/lib/private/app.php
@@ -1129,7 +1129,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(