Go to root directory, libraries\joomla\html\editor.php
In line 268 replace
Code:
// Try to authenticate
$result[] = $plugin->onDisplay($editor);
with
Code:
// Try to authenticate
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}
This code works
In line 268 replace
Code:
// Try to authenticate
$result[] = $plugin->onDisplay($editor);
with
Code:
// Try to authenticate
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}
This code works
0 nhận xét:
Đăng nhận xét