From ea533a4e771a79f9c6051af7f0e097c243775724 Mon Sep 17 00:00:00 2001 From: Wouter Wolters <typo3@wouterwolters.nl> Date: Tue, 29 Apr 2014 21:52:48 +0200 Subject: [PATCH] [TASK] Remove backslash for UnexpectedValueException in mod.php Resolves: #58344 Releases: 6.2 Change-Id: Ic2cbc0a9d8a27c67e145ea9fef55c60d13466c33 Reviewed-on: https://review.typo3.org/29731 Reviewed-by: Oliver Klee Reviewed-by: Markus Klein Tested-by: Markus Klein Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn --- typo3/mod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/mod.php b/typo3/mod.php index e43aa8537b9c..ef583961256a 100644 --- a/typo3/mod.php +++ b/typo3/mod.php @@ -36,7 +36,7 @@ $moduleName = (string)\TYPO3\CMS\Core\Utility\GeneralUtility::_GET('M'); $isDispatched = FALSE; $formprotection = \TYPO3\CMS\Core\FormProtection\FormProtectionFactory::get(); if (!$formprotection->validateToken(\TYPO3\CMS\Core\Utility\GeneralUtility::_GP('moduleToken'), 'moduleCall', $moduleName)) { - throw new \UnexpectedValueException('Invalid form/module token detected. Access Denied!', 1392409507); + throw new UnexpectedValueException('Invalid form/module token detected. Access Denied!', 1392409507); } if ($temp_path = $TBE_MODULES['_PATHS'][$moduleName]) { $MCONF['_'] = \TYPO3\CMS\Backend\Utility\BackendUtility::getModuleUrl($moduleName); -- GitLab