PDA

Orijinalini görmek için tıklayınız : Fatal Error: Call to undefined method stdClass::onDisplay()



Karşı
02-04-2012, 18:20
Sitem fatal error hatası verdi en son yaptığım işlem joomla 2.5.4 güncellemesini yaptım ama tesadüfmü oldu onu bilmiyorum yeni içerik ekle deyince resimdeki hatayı veriyor

699

Geri yapıncada makalerin yanına kilit işareti geliyor.

700

Joomla 2.5.4 libraries klasörünü ftp'den üzerine yeniden yazdırdım ama düzelmedi

Karşı
02-04-2012, 18:37
Joomla.org forumunda bulduğum bir konu neticesinde

editor.php deki 459. satırda bulunan

Bu Kodu

if ($temp = $plugin->onDisplay($editor, $this->asset, $this->author))
{
$result[] = $temp;
}

Bununla değiştirince sorun çözüldü...

if (method_exists($plugin, 'onDisplay')) {
$temp = $plugin->onDisplay($editor, $this->asset, $this->author);
$result[] = $temp;
}

guvenuzman
23-02-2014, 13:55
Joomla.org forumunda bulduğum bir konu neticesinde

editor.php deki 459. satırda bulunan

Bu Kodu

if ($temp = $plugin->onDisplay($editor, $this->asset, $this->author))
{
$result[] = $temp;
}

Bununla değiştirince sorun çözüldü...

if (method_exists($plugin, 'onDisplay')) {
$temp = $plugin->onDisplay($editor, $this->asset, $this->author);
$result[] = $temp;
}

Çook Teşekkürler, sayende 2 gündür tırmaladığım sorunu çözdüm :)