Joomla Fatal error: Call to undefined method stdClass::onDisplay() in joomla/html/editor.php on line 268
->
Today i encountered an issue in my Joomla based website when i tried to edit one of the module data. Below is the error message i received:
“Fatal error: Call to undefined method stdClass::onDisplay() in joomla/html/editor.php on line 268″
After searching in Google for a while i found the answer in a forum, this is what i did to resolve the issue in my joomla based website.
Edit the file “editor.php” in the folder libraries/joomla/html
Replaced the line $resultTest = $plugin->onDisplay($editor);
(which is in line 261 after the line
“// Try to authenticate — only add to array if authentication is successful”)
to
if (method_exists($plugin, ‘onDisplay’)) {
$result[] = $plugin->onDisplay($editor);
}
It worked for me. Hope it will work for you too..
Post comment
Recent Posts
- Yahoo and Bing Integration complete and ready for transition
- Shocking!! Google Adwords Goof up
- Google vs Baidu Vs Bing Logo on Father’s day
- Joomla Fatal error: Call to undefined method stdClass::onDisplay() in joomla/html/editor.php on line 268
- Google Caffeine Update: How effective it’s going to be?
My Recent Twitter Updates
Categories
- Adwords
- Announcements
- coffeetalks
- General
- Joomla
- Make Money
- News
- Orkut
- PPC
- Search Engines
- SEO
- Uncategorized


