ArgumentCountError: Too few arguments to function content_access_rules_per_node()

Created on 30 August 2022, over 2 years ago
Updated 28 April 2023, almost 2 years ago

Problem

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).

Proposed solution

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);
  }
}
🐛 Bug report
Status

Fixed

Version

1.0

Component

Code

Created by

🇯🇵Japan eleonel Itoshima 🇯🇵

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024