Update DashboardHandler.class.php
authorJoshua Rüsweg <josh@joshsboard.de>
Thu, 17 Apr 2014 09:20:44 +0000 (11:20 +0200)
committerJoshua Rüsweg <josh@joshsboard.de>
Thu, 17 Apr 2014 09:20:44 +0000 (11:20 +0200)
fix #1706

wcfsetup/install/files/lib/system/dashboard/DashboardHandler.class.php

index 4d09acde0b65bdcb5fc5158a7ab23fdc1af7bdbb..73f9a1a75fb16a2f649584964c33af5f261de275 100644 (file)
@@ -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();