我正在将项目从4.5更新到6.2.9
我的一个后端模块在核心模块中显示此警告。这是语言模块的区域调用。
$this->MOD_MENU = Array (
"function" => Array (
"1" => $LANG->getLL("function1"),
"2" => $LANG->getLL("function2"),
"3" => $LANG->getLL("function3"),
任何想法?
答案 0 :(得分:0)
经过两天的研究和发现。我可以在我的模块目录[mod / index.php]中的index.php中找到一小段错误。
我使用
包含了locallang.php文件require 'locallang.php';
当我用typo3 API函数$ GLOBALS ['LANG'] - > includeLLFile替换它时,它已被修复。
$GLOBALS['LANG']->includeLLFile("EXT:extension_directory/mod1/locallang.php");