From: max-m Date: Sat, 7 Jul 2012 14:12:11 +0000 (+0300) Subject: Fixes array to string conversion. X-Git-Tag: 2.0.0_Beta_1~1026^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a25877387e0dbf5b2ba9f23fd8849dff29dcd2a8;p=GitHub%2FWoltLab%2FWCF.git Fixes array to string conversion. --- 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']."'"); } } }