我正在尝试在 Joomla 2.5 的 EasyBlog 组件中发布博客条目。到目前为止,我做到了这一点:
$blogTable = EasyBlogHelper::getTable( 'Blog' );
$blogTable->bind($data);
$blogTable->store();
奇怪的是,当代码调用时我得到了这个错误store()
Fatal error: Call to undefined method JRegistryFormat::getInstance()
in site_root/libraries/joomla/registry/registry.php on line 277
知道我怎样才能完成这项工作吗?
谢谢!