Skip to content
Snippets Groups Projects
Commit 0cebd2d4 authored by Xavier Perseguers's avatar Xavier Perseguers
Browse files

[TASK] Fix invalid class reference in deprecation message

References to tx_lang_parser_* should be replaced by t3lib_l10n_parser_*

Change-Id: I529227db91a126ccea25b58211c381c3c5d429f7
Reviewed-on: http://review.typo3.org/4565
Reviewed-by: Xavier Perseguers
Tested-by: Xavier Perseguers
parent b83105de
Branches
Tags
No related merge requests found
......@@ -4206,7 +4206,7 @@ final class t3lib_div {
* @param string $langKey TYPO3 language key, eg. "dk" or "de" or "default"
* @param string $charset Character set (optional)
* @return array LOCAL_LANG array in return.
* @deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use tx_lang_parser_Llphp::getParsedData() from now on
* @deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use t3lib_l10n_parser_Llphp::getParsedData() from now on
*/
public static function readLLPHPfile($fileRef, $langKey, $charset = '') {
t3lib_div::logDeprecatedFunction();
......@@ -4293,7 +4293,7 @@ final class t3lib_div {
* @param string $langKey TYPO3 language key, eg. "dk" or "de" or "default"
* @param string $charset Character set (optional)
* @return array LOCAL_LANG array in return.
* @deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use tx_lang_parser_Llxml::getParsedData() from now on
* @deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use t3lib_l10n_parser_Llxml::getParsedData() from now on
*/
public static function readLLXMLfile($fileRef, $langKey, $charset = '') {
t3lib_div::logDeprecatedFunction();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment