joomla 2.5 をインストールしています。コミュニティビルダーコンポーネントをインストールしました。フィールドを追加しようとすると、次のエラー メッセージが表示されました: Fatal error: Call to undefined method stdClass::onDisplay() in /home/sharpfoc/public_html/joomla16/libraries/joomla/html/editor.php on line 459 if誰もがこの問題を解決する方法について手がかりを持っています。ありがとう。ソウルアイ
4778 次
1 に答える
3
libraries / joomla/htmlフォルダー内のファイル「editor.php」を編集します
行を置き換えました
$resultTest = $plugin->onDisplay($editor);
これは、行261*の行の後にあります
// Try to authenticate — only add to array if authentication is successful
に
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}
それは私のために働いた。それがあなたにもうまくいくことを願っています
于 2012-06-28T16:54:15.180 に答える