Closed (fixed)
Project:
Workflow
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Aug 2008 at 04:19 UTC
Updated:
15 Aug 2008 at 14:12 UTC
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
Comment #1
jvandyk commentedFixed. 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.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.