I am trying to post a blog entry in EasyBlog component of Joomla 2.5. I managed this so far:
$blogTable = EasyBlogHelper::getTable( 'Blog' );
$blogTable->bind($data);
$blogTable->store();
Strangely I get this error when the code is calling store()
Fatal error: Call to undefined method JRegistryFormat::getInstance()
in site_root/libraries/joomla/registry/registry.php on line 277
Any idea how I can get this work?
Thanks!