[TYPO3-english] BE problems with TYPO3 4.7.4
Simon Child
simon at srchild.com
Fri Oct 5 13:28:17 CEST 2012
"Dmitry Dulepov" <dmitry.dulepov at gmail.com> wrote in message
news:mailman.1.1349415897.936.typo3-english at lists.typo3.org...
> Hi!
>
> Simon Child wrote:
>> 3. Page module - I can't add a new content element - when I click the
>> icon
>> for 'add new record after this one' I just get a blank right pane (all
>> three
>> browsers). I can however add a new content element from List
>
> Classics:
> http://www.dmitry-dulepov.com/2009/03/blank-empty-page-in-typo3.html
So, it turns out that to clear some errors in the deprecated log I updated
some calls in some extensions, including comments, tt_news, tt_adress, and a
couple of others.
One of these was:
05-10-12 12:14: t3lib_div::readLLXMLfile() - since TYPO3 4.6, will be
removed in TYPO3 6.0 - use t3lib_l10n_parser_Llxml::getParsedData() from now
on - SC_db_new_content_el->main#604 //
SC_db_new_content_el->getWizardItems#223 //
SC_db_new_content_el->wizardArray#430 //
SC_db_new_content_el->wizard_appendWizards#444 //
tx_comments_pi1_wizicon->proc#493 //
tx_comments_pi1_wizicon->includeLocalLang#56 // t3lib_div::readLLXMLfile#75
// t3lib_div::logDeprecatedFunction#4267
(typo3_src-4.7.4/t3lib/class.t3lib_div.php#4266)
So I edited
ext/comments/pi1/class.tx_comments_pi1_wizicon.php
$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS['LANG']->lang);
to
$LOCAL_LANG = t3lib_l10n_parser_Llxml::getParsedData($llFile,
$GLOBALS['LANG']->lang);
Reverting this recovers the ability to add content elements from Page, but
doesn't fix the File clickmenu problem, and starts refilling the deprecated
log...
So, remaining questions:
1. The unresolved File clickmenu problem (means I can't copy files, for
example)
2. What is the correct syntax to fix this deprecated call:
$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS['LANG']->lang);
Thanks
Simon
More information about the TYPO3-english
mailing list