From: Tim Düsterhus Date: Mon, 28 Nov 2011 12:48:33 +0000 (+0100) Subject: Importing IllegalLinkException instead of using fully qualified name X-Git-Tag: 2.0.0_Beta_1~1544^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d82d508e154b4c90ea25cac282882a3a5dbe0af2;p=GitHub%2FWoltLab%2FWCF.git Importing IllegalLinkException instead of using fully qualified name Additionally reordered use-Statements. --- diff --git a/wcfsetup/install/files/lib/page/AbstractPage.class.php b/wcfsetup/install/files/lib/page/AbstractPage.class.php index 0412f77e04..0681049295 100644 --- a/wcfsetup/install/files/lib/page/AbstractPage.class.php +++ b/wcfsetup/install/files/lib/page/AbstractPage.class.php @@ -1,7 +1,8 @@ neededModules)) { foreach ($this->neededModules as $module) { if (!defined($module) || !constant($module)) { - throw new \wcf\system\exception\IllegalLinkException(); + throw new IllegalLinkException(); } } }