This error in Joomla will solve by replace the code as follows:
Go to root directory, libraries\joomla\html\editor.php
In line 261 replace
In original file replace this
// Try to authenticatewith, this one
$result[] = $plugin->onDisplay($editor);
// Try to authenticate
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}
This should solve the problem. If still persists, disable the editor from the plugin in domain.com/administrator/
No comments:
Post a Comment