From: Joshua Rüsweg Date: Thu, 17 Apr 2014 09:20:44 +0000 (+0200) Subject: Update DashboardHandler.class.php X-Git-Tag: 2.1.0_Alpha_1~890^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=db387ac118baca66df20103369e6548d2535ec81;p=GitHub%2FWoltLab%2FWCF.git Update DashboardHandler.class.php fix #1706 --- diff --git a/wcfsetup/install/files/lib/system/dashboard/DashboardHandler.class.php b/wcfsetup/install/files/lib/system/dashboard/DashboardHandler.class.php index 4d09acde0b..73f9a1a75f 100644 --- a/wcfsetup/install/files/lib/system/dashboard/DashboardHandler.class.php +++ b/wcfsetup/install/files/lib/system/dashboard/DashboardHandler.class.php @@ -64,7 +64,7 @@ class DashboardHandler extends SingletonFactory { foreach ($boxIDs as $boxID) { $className = $this->boxCache[$boxID]->className; if (!ClassUtil::isInstanceOf($className, 'wcf\system\dashboard\box\IDashboardBox')) { - throw new SystemException("'".$className."' does not implement 'wcf\system\dashboard\box\IDashboardbox'"); + throw new SystemException("'".$className."' does not implement 'wcf\system\dashboard\box\IDashboardBox'"); } $boxObject = new $className();