From 1aa846107dc162976b356775bed8d18877948802 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 22 Feb 2018 14:43:56 +0100 Subject: [PATCH] Dont use $info as array when its not an array Signed-off-by: Joas Schilling --- lib/private/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Installer.php b/lib/private/Installer.php index 8a8ece8207..ab0ef836fb 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] ) ); }