After upgrade from 6.20 to 6.22 I had to rebuild the node permissions but the submit form disappeared! Also, using node_access_rebuild(); did not work....

call_user_func_array() expects parameter 1 to be a valid callback, function 'node_configure_rebuild_confirm' not found or invalid function name in /.../includes/form.inc on line 377.

Missing argument 2 for node_configure_rebuild_confirm() in /.../modules/node/node.admin.inc on line 71

After a long search and further look into form.inc and node.admin.inc I resolved it by doing the following on node.admin.inc, but not sure if this is the way to go...

function node_configure_rebuild_confirm() {

function node_configure_rebuild_confirm($form, &$form_state) {

Comments

Status: Active » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.