aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-02-26 13:44:57 +0100
committerGitHub <noreply@github.com>2018-02-26 13:44:57 +0100
commit0c4c3676f6025652fea37dafb42d35575b384025 (patch)
tree4877236c7cbabe4bddba0a09e5d62903f78e7d2e
parent226e63695f37d54f673fe563ca183ea3cc9b8c7a (diff)
parent1aa846107dc162976b356775bed8d18877948802 (diff)
downloadnextcloud-server-0c4c3676f6025652fea37dafb42d35575b384025.tar.gz
nextcloud-server-0c4c3676f6025652fea37dafb42d35575b384025.zip
Merge pull request #8504 from nextcloud/bugfix/noid/well-its-not-an-array
Dont use $info as array when its not an array
-rw-r--r--lib/private/Installer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Installer.php b/lib/private/Installer.php
index 8a8ece82077..ab0ef836fbb 100644
--- a/lib/private/Installer.php
+++ b/lib/private/Installer.php
@@ -107,7 +107,7 @@ class Installer {
if(!is_array($info)) {
throw new \Exception(
$l->t('App "%s" cannot be installed because appinfo file cannot be read.',
- [$info['name']]
+ [$appId]
)
);
}