- 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦
Branch 7.x-3.x is not supported. If this applies to 7.x-1.x, you may re-open it on that branch.
We have a site with Content Access enabled and biblio is currently restricted to authenticated users.
Full core Node search was working on everything bar authors and I tracked this down to the way the authors are loaded:
function biblio_load($nodes) {
...
$contributors = biblio_load_contributors_multiple($vids);
...
foreach ($result as $record) {
....
$nodes[$record['nid']]->biblio_contributors = isset($contributors[$record['vid']]) ? $contributors[$record['vid']] : array();
$nodes[$record['nid']]->biblio_keywords = isset($keywords[$record['vid']]) ? $keywords[$record['vid']] : array();
...
)
And this does:
function biblio_load_contributors_multiple($vids = array(), $auth_category = 0) {
....
$query->addTag('node_access');
...
}
Similar issue for biblio_load_keywords_multiple() that is also tagged with that.
Closed: outdated
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Branch 7.x-3.x is not supported. If this applies to 7.x-1.x, you may re-open it on that branch.