aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-02-22 14:43:56 +0100
committerJoas Schilling <coding@schilljs.com>2018-02-22 14:43:56 +0100
commit1aa846107dc162976b356775bed8d18877948802 (patch)
tree85c4ef65860cef3f5f9dfd329960acc53ddbcaca /lib
parentc2c2c06546801d956778f5ab87e9042d45b40dc4 (diff)
downloadnextcloud-server-1aa846107dc162976b356775bed8d18877948802.tar.gz
nextcloud-server-1aa846107dc162976b356775bed8d18877948802.zip
Dont use $info as array when its not an array
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-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]
)
);
}