From 3219ab94536950c968266b50c9b864482debc67d Mon Sep 17 00:00:00 2001 From: Oliver Hader Date: Wed, 25 Nov 2009 12:44:20 +0000 Subject: [PATCH] Follow-up to bugfix #12420: Removed deprecation logging from methods that are still used in the TYPO3 Core git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@6534 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + typo3/sysext/cms/tslib/class.tslib_fe.php | 12 ++++-------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index c6c8147e472e..db1d53f607b6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -23,6 +23,7 @@ * Follow-up to bugfix #12436: Move Suhosin part to php.ini section in the install tool * Fixed bug #9981: EM does not test for usage of mod.php-API and spuriously displays an error (thanks to Andreas Kundoch) * Follow-up to bugfix #12581: Use FILTER_FLAG_SCHEME_REQUIRED constant in t3lib_div::isValidUrl() + * Follow-up to bugfix #12420: Removed deprecation logging from methods that are still used in the TYPO3 Core 2009-11-24 Stanislas Rolland diff --git a/typo3/sysext/cms/tslib/class.tslib_fe.php b/typo3/sysext/cms/tslib/class.tslib_fe.php index e23dc1b39a96..edcab4ff6be5 100644 --- a/typo3/sysext/cms/tslib/class.tslib_fe.php +++ b/typo3/sysext/cms/tslib/class.tslib_fe.php @@ -1603,10 +1603,9 @@ * @return void * @access private * @deprecated since TYPO3 4.3, will be removed in TYPO3 4.5, please use the "simulatestatic" sysext directly + * @todo Deprecated but still used in the Core! */ function idPartsAnalyze($str) { - t3lib_div::logDeprecatedFunction(); - $GET_VARS = ''; switch(substr($str,0,2)) { case 'B6': @@ -3933,10 +3932,9 @@ if (version == "n3") { * @return string The body of the filename. * @see getSimulFileName(), t3lib_tstemplate::linkData(), tslib_frameset::frameParams() * @deprecated since TYPO3 4.3, will be removed in TYPO3 4.5, please use the "simulatestatic" sysext directly + * @todo Deprecated but still used in the Core! */ function makeSimulFileName($inTitle, $page, $type, $addParams = '', $no_cache = false) { - t3lib_div::logDeprecatedFunction(); - if (t3lib_extMgm::isLoaded('simulatestatic')) { $parameters = array( 'inTitle' => $inTitle, @@ -3983,10 +3981,9 @@ if (version == "n3") { * @return string The filename (without path) * @see makeSimulFileName(), publish.php * @deprecated since TYPO3 4.3, will be removed in TYPO3 4.5, please use the "simulatestatic" sysext directly + * @todo Deprecated but still used in the Core! */ function getSimulFileName() { - t3lib_div::logDeprecatedFunction(); - return $this->makeSimulFileName( $this->page['title'], ($this->page['alias'] ? $this->page['alias'] : $this->id), @@ -4022,10 +4019,9 @@ if (version == "n3") { * @param string Character to put in the end of string to merge it with the next value. * @return string String * @deprecated since TYPO3, 4.3, will be removed in TYPO3 4.5, please use the "simulatestatic" sysext directly + * @todo Deprecated but still used in the Core! */ function fileNameASCIIPrefix($inTitle,$titleChars,$mergeChar='.') { - t3lib_div::logDeprecatedFunction(); - $out = $this->csConvObj->specCharsToASCII($this->renderCharset, $inTitle); // Get replacement character $replacementChar = $this->config['config']['simulateStaticDocuments_replacementChar']; -- 2.20.1