Se produce este error con el componente de K2 y una libreria de Joomla.

Fatal error: Call to undefined method stdClass::onDisplay()

Solucion:

Editar el archivo libraries/joomla/html/editor.php

Buscar la linea:

if ($temp = $plugin->onDisplay($editor, $this->asset, $this->author))

Sustituirla por:

if (method_exists($plugin,'onDisplay') && $temp = $plugin->onDisplay($editor, $this->asset, $this->author))