By Ismew on Friday, 27 February 2015
Posted in Technical Issues
Replies 2
Likes 0
Views 1.5K
Votes 0
Hi, i find error in easyblog pagination in joomla 3.4,
the pagination is disfunction,
the solution is at _ components/com_easyblog/helpers/helper.php
-> at line 1610

public static function triggerEvent( $event , &$row , &$params , $limitstart )
{
$dispatcher = JDispatcher::getInstance();
$version = EasyBlogHelper::getJoomlaVersion();
$events = array(

add this line:
'3.4' => array(
'easyblog.prepareContent' => 'onEasyBlogPrepareContent',
'easyblog.beforeSave' => 'onBeforeEasyBlogSave',
'easyblog.commentCount' => 'onGetCommentCount',
'prepareContent' => 'onContentPrepare',
'afterDisplayTitle' => 'onContentAfterTitle',
'beforeDisplayContent' => 'onContentBeforeDisplay',
'afterDisplayContent' => 'onContentAfterDisplay',
'beforeSave' => 'onContentBeforeSave'
)
Adding ... 3.4' => array( ....
solve the problem
thanks
·
Friday, 27 February 2015 09:54
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Ismew,

Thanks for sharing.
·
Friday, 27 February 2015 10:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post