Hello,
In the User Blog App listing, i succeeded to display all items, including articles from Groups and Pages.
For that I modified the file and I deleted the following line :
$query[] = 'AND ' . $db->qn('source_type') . '=' . $db->Quote('easyblog.sitewide');
It worked !
But since the recent update of the application (2.1.3), this technique no longer works...
Could you help me please ?
In my opinion it is decided in the following lines :
$contributeSQL = ' AND ((a.`source_type` = ' . $db->Quote(EASYBLOG_POST_SOURCE_SITEWIDE) . ') ';
if ($includeTeam) {
$contributeSQL .= $contributor::genAccessSQL(EASYBLOG_POST_SOURCE_TEAM, 'a');
}
$contributeSQL .= ')';
Thank you,
Philippe