From: Matthias Schmidt Date: Sun, 9 Jun 2013 10:53:15 +0000 (+0200) Subject: Fixes typo X-Git-Tag: 2.0.0_Beta_4~91^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e6560910eef2e82dad37d5cf68463b024644df74;p=GitHub%2FWoltLab%2FWCF.git Fixes typo --- diff --git a/wcfsetup/install/files/lib/system/exception/PermissionDeniedException.class.php b/wcfsetup/install/files/lib/system/exception/PermissionDeniedException.class.php index 39b8eac1d8..749445de99 100644 --- a/wcfsetup/install/files/lib/system/exception/PermissionDeniedException.class.php +++ b/wcfsetup/install/files/lib/system/exception/PermissionDeniedException.class.php @@ -3,10 +3,11 @@ namespace wcf\system\exception; use wcf\system\WCF; /** - * A PermissionDeniedException is thrown when a user has no permission to access to a specific area. + * A PermissionDeniedException is thrown when a user has no permission to access + * to a specific area. * * @author Marcel Werk - * @copyright 2001-2012 WoltLab GmbH + * @copyright 2001-2013 WoltLab GmbH * @license GNU Lesser General Public License * @package com.woltlab.wcf * @subpackage system.exception @@ -14,7 +15,7 @@ use wcf\system\WCF; */ class PermissionDeniedException extends UserException { /** - * Creates a new IllegalLinkException object. + * Creates a new PermissionDeniedException object. */ public function __construct() { parent::__construct(WCF::getLanguage()->get('wcf.global.error.permissionDenied'));