call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'diff_diffs_overview' was given in /var/www/dp/includes/menu.inc on line 348.

P.S. The rest of the Drupal is up-to-date (6.19).

Comments

yhahn’s picture

Status: Active » Postponed (maintainer needs more info)

Did you clear your caches?

attheshow’s picture

I'm getting this as well. This basically makes the revisions page unusable. My caches have been cleared multiple times. Here's the exact error I'm getting:

warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'diff_diffs_overview' was given in /var/www/drupal/includes/menu.inc on line 348.

attheshow’s picture

I updated my module from 2.0 to 2.1 via Drush 3. I'm guessing that probably didn't have anything to do with it, but just thought I'd mention it.

drpitch’s picture

If it helps I also had the same error message and was fixed when I cleared caches.

realityloop’s picture

still an issue?

alan d.’s picture

Before marking as open, did the menu structure change in the menu alter? If so:

D6 solution

/**
 * Rebuild the menus.
 */
function diff_update_6001() {
  menu_rebuild();
}

D7 solution

/**
 * Rebuild the menus.
 */
function diff_update_7001() {
  // Just flag the rebuild as required, so if other updates call this, the rebuild is only done once.
  variable_set('menu_rebuild_needed', TRUE);
}
alan d.’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

Closing due to inactivity.