diff --git a/typo3/sysext/backend/Classes/Controller/LoginController.php b/typo3/sysext/backend/Classes/Controller/LoginController.php index 36c8e60fc1d5d5d2f97d8be71c879d5aa25b6d0b..4923a2e537475a5fd6d8665f18375b4b85952ba9 100644 --- a/typo3/sysext/backend/Classes/Controller/LoginController.php +++ b/typo3/sysext/backend/Classes/Controller/LoginController.php @@ -457,7 +457,7 @@ class LoginController throw new \RuntimeException('Missing configuration for login provider "' . $identifier . '".', 1433416043); } if (!is_string($configuration['provider']) || empty($configuration['provider']) || !class_exists($configuration['provider']) || !is_subclass_of($configuration['provider'], LoginProviderInterface::class)) { - throw new \RuntimeException('The login provider "' . $identifier . '" defines an invalid provider. Ensure the class exists and implements the "' . LoginProviderInterface::class . '".', 1433416043); + throw new \RuntimeException('The login provider "' . $identifier . '" defines an invalid provider. Ensure the class exists and implements the "' . LoginProviderInterface::class . '".', 1460977275); } if (empty($configuration['label'])) { throw new \RuntimeException('Missing label definition for login provider "' . $identifier . '".', 1433416044); diff --git a/typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php b/typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php index 97e1cba8527423e1f298b87a5e224aa804c2e170..4a2265761342a7bda3b2e463c09c406ed5afcf20 100644 --- a/typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php +++ b/typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php @@ -85,7 +85,7 @@ class LoginControllerTest extends UnitTestCase /** * @test * @expectedException \RuntimeException - * @expectedExceptionCode 1433416043 + * @expectedExceptionCode 1460977275 */ public function validateAndSortLoginProvidersDetectsWrongProvider() { diff --git a/typo3/sysext/beuser/Classes/Controller/BackendUserGroupController.php b/typo3/sysext/beuser/Classes/Controller/BackendUserGroupController.php index 5b88829c89330b65ef2bea10846e874e8b99c5d1..53107eaee1e9a8f65be316b7a7043c5036f51786 100644 --- a/typo3/sysext/beuser/Classes/Controller/BackendUserGroupController.php +++ b/typo3/sysext/beuser/Classes/Controller/BackendUserGroupController.php @@ -48,7 +48,7 @@ class BackendUserGroupController extends BackendUserActionController // circumvented until there is a better solution in extbase. // For now we throw an exception if no settings are detected. if (empty($this->settings)) { - throw new \RuntimeException('No settings detected. This module can not work then. This usually happens if there is no frontend TypoScript template with root flag set. ' . 'Please create a frontend page with a TypoScript root template.', 1344375003); + throw new \RuntimeException('No settings detected. This module can not work then. This usually happens if there is no frontend TypoScript template with root flag set. ' . 'Please create a frontend page with a TypoScript root template.', 1460976089); } } diff --git a/typo3/sysext/core/Classes/FormProtection/FrontendFormProtection.php b/typo3/sysext/core/Classes/FormProtection/FrontendFormProtection.php index ca15ce62bcfef3d175f11549cc3db865781b767a..e9513369fea6fe6f4d997e9afb06f31b039b3e6f 100644 --- a/typo3/sysext/core/Classes/FormProtection/FrontendFormProtection.php +++ b/typo3/sysext/core/Classes/FormProtection/FrontendFormProtection.php @@ -89,7 +89,7 @@ class FrontendFormProtection extends AbstractFormProtection $this->frontendUser = $frontendUser; $this->validationFailedCallback = $validationFailedCallback; if (!$this->isAuthorizedFrontendSession()) { - throw new \TYPO3\CMS\Core\Error\Exception('A front-end form protection may only be instantiated if there is an active front-end session.', 1285067843); + throw new \TYPO3\CMS\Core\Error\Exception('A front-end form protection may only be instantiated if there is an active front-end session.', 1460975777); } } diff --git a/typo3/sysext/core/Classes/Imaging/IconProvider/SvgIconProvider.php b/typo3/sysext/core/Classes/Imaging/IconProvider/SvgIconProvider.php index 8e1e5e543870ebe7b4839ceeebe075b3c8826480..e12b996401d220a0d8af628580317bd28eb49ced 100644 --- a/typo3/sysext/core/Classes/Imaging/IconProvider/SvgIconProvider.php +++ b/typo3/sysext/core/Classes/Imaging/IconProvider/SvgIconProvider.php @@ -46,7 +46,7 @@ class SvgIconProvider implements IconProviderInterface protected function generateMarkup(Icon $icon, array $options) { if (empty($options['source'])) { - throw new \InvalidArgumentException('[' . $icon->getIdentifier() . '] The option "source" is required and must not be empty', 1440754980); + throw new \InvalidArgumentException('[' . $icon->getIdentifier() . '] The option "source" is required and must not be empty', 1460976566); } $source = $options['source']; @@ -68,7 +68,7 @@ class SvgIconProvider implements IconProviderInterface protected function generateInlineMarkup(Icon $icon, array $options) { if (empty($options['source'])) { - throw new \InvalidArgumentException('The option "source" is required and must not be empty', 1440754980); + throw new \InvalidArgumentException('The option "source" is required and must not be empty', 1460976610); } $source = $options['source']; diff --git a/typo3/sysext/core/Classes/Imaging/IconRegistry.php b/typo3/sysext/core/Classes/Imaging/IconRegistry.php index c5802fe95357dd2d941d7e531cc3d63837f6ef25..3725aada3051d6bc239513ad9b60e04825c8979a 100644 --- a/typo3/sysext/core/Classes/Imaging/IconRegistry.php +++ b/typo3/sysext/core/Classes/Imaging/IconRegistry.php @@ -2791,7 +2791,7 @@ class IconRegistry implements SingletonInterface { GeneralUtility::logDeprecatedFunction(); if (!$this->isDeprecated($identifier)) { - throw new Exception('Icon with identifier "' . $identifier . '" is not deprecated"', 1437425804); + throw new Exception('Icon with identifier "' . $identifier . '" is not deprecated"', 1460976527); } return $this->deprecatedIcons[$identifier]; } diff --git a/typo3/sysext/core/Classes/Locking/SemaphoreLockStrategy.php b/typo3/sysext/core/Classes/Locking/SemaphoreLockStrategy.php index b560da45065287d5950faa7f4a760f87ec90f8dd..f170465ea2dde500e479644aef8a893acbddfc22 100644 --- a/typo3/sysext/core/Classes/Locking/SemaphoreLockStrategy.php +++ b/typo3/sysext/core/Classes/Locking/SemaphoreLockStrategy.php @@ -57,11 +57,11 @@ class SemaphoreLockStrategy implements LockingStrategyInterface // does not exist, this issue should be solved on a different // level of the application. if (!GeneralUtility::mkdir($path)) { - throw new LockCreateException('Cannot create directory ' . $path, 1395140007); + throw new LockCreateException('Cannot create directory ' . $path, 1460976250); } } if (!is_writable($path)) { - throw new LockCreateException('Cannot write to directory ' . $path, 1396278700); + throw new LockCreateException('Cannot write to directory ' . $path, 1460976320); } $this->filePath = $path . 'sem_' . md5((string)$subject); touch($this->filePath); diff --git a/typo3/sysext/core/Classes/Locking/SimpleLockStrategy.php b/typo3/sysext/core/Classes/Locking/SimpleLockStrategy.php index e34f07558c25ffd413a0eee665e90a0b4e2737b0..851705306196e24a1de0ca2d3520fb9d0332c816 100644 --- a/typo3/sysext/core/Classes/Locking/SimpleLockStrategy.php +++ b/typo3/sysext/core/Classes/Locking/SimpleLockStrategy.php @@ -60,11 +60,11 @@ class SimpleLockStrategy implements LockingStrategyInterface // does not exist, this issue should be solved on a different // level of the application. if (!GeneralUtility::mkdir($path)) { - throw new LockCreateException('Cannot create directory ' . $path, 1395140007); + throw new LockCreateException('Cannot create directory ' . $path, 1460976286); } } if (!is_writable($path)) { - throw new LockCreateException('Cannot write to directory ' . $path, 1396278700); + throw new LockCreateException('Cannot write to directory ' . $path, 1460976340); } $this->filePath = $path . 'simple_' . md5((string)$subject); } @@ -172,7 +172,7 @@ class SimpleLockStrategy implements LockingStrategyInterface } if ($mode & self::LOCK_CAPABILITY_NOBLOCK && !$this->isAcquired && $wouldBlock) { - throw new LockAcquireWouldBlockException('Failed to acquire lock because the request would block.', 1428700748); + throw new LockAcquireWouldBlockException('Failed to acquire lock because the request would block.', 1460976403); } return $this->isAcquired; diff --git a/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php b/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php index be9114247f54eed99466e563c96364e3b13cd4e7..fcc81aadcc0c7c7379cd5904b29c388d55f5c89f 100644 --- a/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php +++ b/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php @@ -150,7 +150,7 @@ class AdodbPreparedStatement extends \TYPO3\CMS\Dbal\Database\DatabaseConnection break; default: // Same error as in \TYPO3\CMS\Core\Database\PreparedStatement::execute() - throw new \InvalidArgumentException(sprintf('Unknown type %s used for parameter %s.', $this->parameters[$i]['type'], $i + 1), 1281859196); + throw new \InvalidArgumentException(sprintf('Unknown type %s used for parameter %s.', $this->parameters[$i]['type'], $i + 1), 1460975728); } $queryParts[$i * 2 + 1] = $value; diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php index 7e18a80a4f3880fd5498dc64add41ce21caab1a8..5a41de2d60119b631e1cae30c89f7a24fce51e94 100755 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php @@ -654,7 +654,7 @@ class Typo3DbBackend implements BackendInterface, \TYPO3\CMS\Core\SingletonInter { // @todo profile this method again if (substr_count($sqlString, '?') !== count($parameters)) { - throw new \TYPO3\CMS\Extbase\Persistence\Generic\Exception('The number of question marks to replace must be equal to the number of parameters.', 1242816074); + throw new \TYPO3\CMS\Extbase\Persistence\Generic\Exception('The number of question marks to replace must be equal to the number of parameters.', 1460975513); } $offset = 0; foreach ($parameters as $parameter) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php index e92aecb74482d8d9596ce4d8e6389cfc8905beb9..cb6f32a841790627c06b41c8e445da1c78fc4b14 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php @@ -667,7 +667,7 @@ class Typo3DbQueryParser implements \TYPO3\CMS\Core\SingletonInterface } elseif (!$ignoreEnableFields && !$includeDeleted) { $statement .= $this->getPageRepository()->enableFields($tableName); } elseif (!$ignoreEnableFields && $includeDeleted) { - throw new InconsistentQuerySettingsException('Query setting "ignoreEnableFields=FALSE" can not be used together with "includeDeleted=TRUE" in frontend context.', 1327678173); + throw new InconsistentQuerySettingsException('Query setting "ignoreEnableFields=FALSE" can not be used together with "includeDeleted=TRUE" in frontend context.', 1460975922); } return $statement; } diff --git a/typo3/sysext/fluid/Classes/ViewHelpers/Uri/ImageViewHelper.php b/typo3/sysext/fluid/Classes/ViewHelpers/Uri/ImageViewHelper.php index f8e8dabd95207f03736f854499b6424b525b1b41..f4f2f1776f9679eaca3931cd84b283be227ff9bf 100644 --- a/typo3/sysext/fluid/Classes/ViewHelpers/Uri/ImageViewHelper.php +++ b/typo3/sysext/fluid/Classes/ViewHelpers/Uri/ImageViewHelper.php @@ -118,7 +118,7 @@ class ImageViewHelper extends AbstractViewHelper $absolute = $arguments['absolute']; if (is_null($src) && is_null($image) || !is_null($src) && !is_null($image)) { - throw new Exception('You must either specify a string src or a File object.', 1382284105); + throw new Exception('You must either specify a string src or a File object.', 1460976233); } try { diff --git a/typo3/sysext/form/Classes/ViewHelpers/SelectViewHelper.php b/typo3/sysext/form/Classes/ViewHelpers/SelectViewHelper.php index e8e500dc21d30d55fb1389b402e1ea890cd36ca8..0db3dca22796f02d5d7dc49a52a3177d1d423960 100644 --- a/typo3/sysext/form/Classes/ViewHelpers/SelectViewHelper.php +++ b/typo3/sysext/form/Classes/ViewHelpers/SelectViewHelper.php @@ -69,7 +69,7 @@ class SelectViewHelper extends \TYPO3\CMS\Fluid\ViewHelpers\Form\SelectViewHelpe if (method_exists($key, '__toString')) { $key = (string)$key; } else { - throw new \TYPO3\CMS\Fluid\Core\ViewHelper\Exception('Identifying value for object of class "' . get_class($value) . '" was an object.', 1247827428); + throw new \TYPO3\CMS\Fluid\Core\ViewHelper\Exception('Identifying value for object of class "' . get_class($value) . '" was an object.', 1460975593); } } // @todo use $this->persistenceManager->isNewObject() once it is implemented @@ -78,7 +78,7 @@ class SelectViewHelper extends \TYPO3\CMS\Fluid\ViewHelpers\Form\SelectViewHelpe } elseif (method_exists($value, '__toString')) { $key = (string)$value; } else { - throw new \TYPO3\CMS\Fluid\Core\ViewHelper\Exception('No identifying value for object of class "' . get_class($value) . '" found.', 1247826696); + throw new \TYPO3\CMS\Fluid\Core\ViewHelper\Exception('No identifying value for object of class "' . get_class($value) . '" found.', 1460975538); } if ($this->hasArgument('optionLabelField')) { $value = \TYPO3\CMS\Extbase\Reflection\ObjectAccess::getPropertyPath($value, $this->arguments['optionLabelField']); @@ -86,7 +86,7 @@ class SelectViewHelper extends \TYPO3\CMS\Fluid\ViewHelpers\Form\SelectViewHelpe if (method_exists($value, '__toString')) { $value = (string)$value; } else { - throw new \TYPO3\CMS\Fluid\Core\ViewHelper\Exception('Label value for object of class "' . get_class($value) . '" was an object without a __toString() method.', 1247827553); + throw new \TYPO3\CMS\Fluid\Core\ViewHelper\Exception('Label value for object of class "' . get_class($value) . '" was an object without a __toString() method.', 1460975633); } } } elseif (method_exists($value, '__toString')) { diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php index 297a040f90b3da5af59acc2fe1c9e28da1634fe5..dc7b329a2d3a0f90fe777870aed502c24f2c8333 100644 --- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php +++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php @@ -4653,7 +4653,7 @@ class TypoScriptFrontendController if ($locked) { break; } else { - throw new \RuntimeException('Could not acquire page lock for ' . $key . '.', 1294586098); + throw new \RuntimeException('Could not acquire page lock for ' . $key . '.', 1460975877); } } while (true); } @@ -4670,7 +4670,7 @@ class TypoScriptFrontendController { if ($this->locks[$type]['accessLock']) { if (!$this->locks[$type]['accessLock']->acquire()) { - throw new \RuntimeException('Could not acquire access lock for "' . $type . '"".', 1294586098); + throw new \RuntimeException('Could not acquire access lock for "' . $type . '"".', 1460975902); } $this->locks[$type]['pageLock']->release(); diff --git a/typo3/sysext/rtehtmlarea/Classes/Form/Element/RichTextElement.php b/typo3/sysext/rtehtmlarea/Classes/Form/Element/RichTextElement.php index 088db4589fd358113537fe8e8fa9eed28505c904..1b6ac40c9ea9f263d1f89172caedb8605628f453 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Form/Element/RichTextElement.php +++ b/typo3/sysext/rtehtmlarea/Classes/Form/Element/RichTextElement.php @@ -959,7 +959,7 @@ class RichTextElement extends AbstractFormElement } $failure = GeneralUtility::writeFileToTypo3tempDir($destination, $minifiedJavaScript ? $minifiedJavaScript : $contents); if ($failure) { - throw new \RuntimeException($failure, 1294585668); + throw new \RuntimeException($failure, 1460975840); } } if (isset($GLOBALS['TSFE'])) { diff --git a/typo3/sysext/rtehtmlarea/Classes/ImageHandler/EditImageHandler.php b/typo3/sysext/rtehtmlarea/Classes/ImageHandler/EditImageHandler.php index 1c60743cd19961d7f38d1c4c21091e60c1302797..e8691430adf793934e607c2fcf083cf285145c16 100644 --- a/typo3/sysext/rtehtmlarea/Classes/ImageHandler/EditImageHandler.php +++ b/typo3/sysext/rtehtmlarea/Classes/ImageHandler/EditImageHandler.php @@ -50,7 +50,7 @@ class EditImageHandler implements LinkHandlerInterface, LinkParameterProviderInt public function initialize(AbstractLinkBrowserController $linkBrowser, $identifier, array $configuration) { if (!$linkBrowser instanceof SelectImageController) { - throw new \InvalidArgumentException('The given $linkBrowser must be of type SelectImageController."', 1455499721); + throw new \InvalidArgumentException('The given $linkBrowser must be of type SelectImageController."', 1460976644); } $this->selectImageController = $linkBrowser; }