The menu hook declares a menu whose callback doesn't exist.

  $items['admin/build/workflow/list'] = array(
    'title' => 'List',
    'weight' => -10,
    'access arguments' => array('administer workflow'),
    'page callback' => 'workflow_page',
    'type' => MENU_DEFAULT_LOCAL_TASK,
    'file' => 'workflow.admin.inc',
  );

I guess it should be changed in:

  $items['admin/build/workflow/list'] = array(
    'title' => 'List',
    'weight' => -10,
    'access arguments' => array('administer workflow'),
    'page callback' => 'workflow_overview',
    'type' => MENU_DEFAULT_LOCAL_TASK,
    'file' => 'workflow.admin.inc',
  );

Comments

jvandyk’s picture

Status: Active » Fixed

Fixed. Thanks for all of your contributions recently!

It would be really nice if you would submit patches instead of just copy-pasting the code. That makes it much easier for me.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.