diff options
author | Joas Schilling <coding@schilljs.com> | 2018-02-22 14:43:56 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-02-22 14:43:56 +0100 |
commit | 1aa846107dc162976b356775bed8d18877948802 (patch) | |
tree | 85c4ef65860cef3f5f9dfd329960acc53ddbcaca /lib | |
parent | c2c2c06546801d956778f5ab87e9042d45b40dc4 (diff) | |
download | nextcloud-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.php | 2 |
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] ) ); } |