- Status changed to Fixed
almost 2 years ago 3:21pm 28 April 2023 Automatically closed - issue fixed for 2 weeks with no activity.
On Drupal core 7.91
and Content Access 7.x-1.2-beta4
enable custom access for a content type, then go to the access page of a node of that content type, eg: /node/1671/access and select a role and save and you may see the following error:
ArgumentCountError: Too few arguments to function content_access_rules_per_node(), 1 passed in /app/docroot/includes/module.inc on line 965 and exactly 2 expected in content_access_rules_per_node() (line 25 of /app/docroot/sites/all/modules/contrib/content_access/content_access_rules/content_access_rules.module).
Replace
/**
* Implements hook_per_node().
*/
function content_access_rules_per_node($settings, $node) {
rules_invoke_event('content_access_per_node', $node);
}
with
/**
* Implements hook_per_node().
*/
function content_access_rules_per_node($settings, $node = NULL) {
if ($node) {
rules_invoke_event('content_access_per_node', $node);
}
}
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.