When Qlue Custom 404 plugin is working with T3 Framework plugin, I got this error
Infinite loop detected in JError
Tested with other templates – custom 404 page do appear.
I found that T3 plugin refers to JError in
jat3corejoomlamodulehelper.php
[php]JError::raiseWarning(‘SOME_ERROR_CODE’, JText::sprintf(‘JLIB_APPLICATION_ERROR_MODULE_LOAD’, $db->getErrorMsg()));[/php]
but it’s not the case, as I can see from error message
Also it calls it in
jat3corejoomlaview.php (5 hits)
[php]
Line 196: if (JError::isError($result)) {
Line 432: JError::raiseError (500, JText::_(‘JLIB_APPLICATION_ERROR_VIEW_GET_NAME’));
Line 436: JError::raiseWarning(‘SOME_ERROR_CODE’,JText::_(‘JLIB_APPLICATION_ERROR_VIEW_GET_NAME_SUBSTRING’));
Line 616: return JError::raiseError(500, JText::sprintf (‘JLIB_APPLICATION_ERROR_LAYOUTFILE_NOT_FOUND’, $file));
[/php]
but again I do not see here lang constant JLIB_ERROR_INFINITE_LOOP (which is Infinite loop detected in JError)
Can somebody point me to a direction how bebug the error?
Thanks!