From a25877387e0dbf5b2ba9f23fd8849dff29dcd2a8 Mon Sep 17 00:00:00 2001 From: max-m Date: Sat, 7 Jul 2012 17:12:11 +0300 Subject: [PATCH] Fixes array to string conversion. --- .../package/plugin/LanguagePackageInstallationPlugin.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/package/plugin/LanguagePackageInstallationPlugin.class.php b/wcfsetup/install/files/lib/system/package/plugin/LanguagePackageInstallationPlugin.class.php index 9c2cf36610..91249e3afe 100644 --- a/wcfsetup/install/files/lib/system/package/plugin/LanguagePackageInstallationPlugin.class.php +++ b/wcfsetup/install/files/lib/system/package/plugin/LanguagePackageInstallationPlugin.class.php @@ -45,7 +45,7 @@ class LanguagePackageInstallationPlugin extends AbstractXMLPackageInstallationPl $languageFiles[$match[1]] = $file['filename']; } else { - throw new SystemException("Can not determine language code of language file '".$file."'"); + throw new SystemException("Can not determine language code of language file '".$file['filename']."'"); } } } -- 2.20.1