diff --git a/typo3/sysext/backend/Classes/Controller/File/FileController.php b/typo3/sysext/backend/Classes/Controller/File/FileController.php index d62f3d1926ab..8d3f3deeffab 100644 --- a/typo3/sysext/backend/Classes/Controller/File/FileController.php +++ b/typo3/sysext/backend/Classes/Controller/File/FileController.php @@ -32,8 +32,6 @@ * Gateway for TCE (TYPO3 Core Engine) file-handling through POST forms. * This script serves as the file administration part of the TYPO3 Core Engine. * Basically it includes two libraries which are used to manipulate files on the server. - * Before TYPO3 4.3, it was located in typo3/tce_file.php and redirected back to a - * $redirectURL. Since 4.3 this class is also used for accessing via AJAX */ class FileController { diff --git a/typo3/sysext/backend/Classes/Form/Element/SelectCheckBoxElement.php b/typo3/sysext/backend/Classes/Form/Element/SelectCheckBoxElement.php index 1c33db9a5f01..ae6bf7a1e171 100644 --- a/typo3/sysext/backend/Classes/Form/Element/SelectCheckBoxElement.php +++ b/typo3/sysext/backend/Classes/Form/Element/SelectCheckBoxElement.php @@ -92,7 +92,7 @@ public function render() ]; } else { // Check if some help text is available - // Since TYPO3 4.5 help text is expected to be an associative array + // Help text is expected to be an associative array // with two key, "title" and "description" // For the sake of backwards compatibility, we test if the help text // is a string and use it as a description (this could happen if items diff --git a/typo3/sysext/backend/Classes/Utility/BackendUtility.php b/typo3/sysext/backend/Classes/Utility/BackendUtility.php index c61bbbef59c5..0bf79b2da826 100644 --- a/typo3/sysext/backend/Classes/Utility/BackendUtility.php +++ b/typo3/sysext/backend/Classes/Utility/BackendUtility.php @@ -2417,8 +2417,6 @@ public static function helpText($table, $field) /** * API function that wraps the text / html in help text, so if a user hovers over it * the help text will show up - * This is the new help API function since TYPO3 4.5, and uses the new behaviour - * (hover over text, no icon, no fulltext option, no option to disable the help) * * @param string $table The table name for which the help should be shown * @param string $field The field name for which the help should be shown diff --git a/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php b/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php index 182ab2ea95ea..f9e38eedb26c 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php @@ -20,7 +20,6 @@ /** * An abstract caching backend * - * This file is a backport from FLOW3 * @api */ abstract class AbstractBackend implements BackendInterface, LoggerAwareInterface @@ -44,9 +43,8 @@ abstract class AbstractBackend implements BackendInterface, LoggerAwareInterface /** * The current application context * - * TYPO3 v4 note: This variable is currently unused in v4 context and set to - * "production" always. It is only kept to stay in sync with - * FLOW3 code. + * This variable is currently unused and set to "production" always. + * It is only kept to keep backwards compatibility. * * @var string */ @@ -62,7 +60,7 @@ abstract class AbstractBackend implements BackendInterface, LoggerAwareInterface /** * Constructs this backend * - * @param string $context FLOW3's application context + * @param string $context Unused, for backward compatibility only * @param array $options Configuration options - depends on the actual backend * @throws \InvalidArgumentException * @api diff --git a/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php b/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php index 125130d4d30e..4d770f7bca22 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php @@ -34,7 +34,6 @@ * This prefix makes sure that keys from the different installations do not * conflict. * - * This file is a backport from FLOW3 * @api */ class ApcBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBackend implements \TYPO3\CMS\Core\Cache\Backend\TaggableBackendInterface @@ -69,7 +68,7 @@ protected function getIdentifierPrefix() /** * Constructs this backend * - * @param string $context FLOW3's application context + * @param string $context Unused, for backward compatibility only * @param array $options Configuration options - unused here * @throws \TYPO3\CMS\Core\Cache\Exception */ diff --git a/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php b/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php index bdb262092077..ff6473732855 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php @@ -71,7 +71,7 @@ protected function getIdentifierPrefix() /** * Constructs this backend * - * @param string $context FLOW3's application context + * @param string $context Unused, for backward compatibility only * @param array $options Configuration options - unused here * @throws Cache\Exception */ diff --git a/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php b/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php index 27ddeb297a89..0c98c1bd5edd 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php @@ -21,7 +21,6 @@ /** * A caching backend which stores cache entries in files * - * This file is a backport from FLOW3 * @api */ class FileBackend extends \TYPO3\CMS\Core\Cache\Backend\SimpleFileBackend implements \TYPO3\CMS\Core\Cache\Backend\FreezableBackendInterface, \TYPO3\CMS\Core\Cache\Backend\TaggableBackendInterface @@ -98,10 +97,6 @@ public function isFrozen() * This method also detects if this backend is frozen and sets the internal * flag accordingly. * - * TYPO3 v4 note: This method is different between TYPO3 v4 and FLOW3 - * because the Environment class to get the path to a temporary directory - * does not exist in v4. - * * @param \TYPO3\CMS\Core\Cache\Frontend\FrontendInterface $cache The cache frontend */ public function setCache(\TYPO3\CMS\Core\Cache\Frontend\FrontendInterface $cache) diff --git a/typo3/sysext/core/Classes/Cache/Backend/FreezableBackendInterface.php b/typo3/sysext/core/Classes/Cache/Backend/FreezableBackendInterface.php index f0125840ee83..dc72335493b4 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/FreezableBackendInterface.php +++ b/typo3/sysext/core/Classes/Cache/Backend/FreezableBackendInterface.php @@ -1,15 +1,19 @@ viewHelperVariableContainer->get(\TYPO3\CMS\Fluid\ViewHelpers\FormViewHelper::class, 'formFieldNames'); $this->postProcessUriArgumentsForRequestHash($this->formActionUriArguments, $formFieldNames); $requestHash = $this->requestHashService->generateRequestHash($formFieldNames, $this->getFieldNamePrefix()); - // in v4, we need to prefix __hmac as well to make it show up in the request object. return ''; }