Closed (fixed)
Project:
CVS integration
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
27 Apr 2008 at 16:07 UTC
Updated:
28 Jan 2009 at 06:40 UTC
Currently we have this:
if (!module_exists('project')) {
$items['admin/project'] = array(
'title' => 'Project administration',
'description' => 'Administrative interface for project management and related modules.',
'page callback' => 'system_admin_menu_block_page',
'access arguments' => array($admin_access),
'type' => MENU_NORMAL_ITEM,
);
}
However, going to project/settings results in a WSOD because we're not telling the menu system where it can find the function system_admin_menu_block_page(). Attached fixes this.
| Comment | File | Size | Author |
|---|---|---|---|
| cvs_menu.patch | 794 bytes | aclight |
Comments
Comment #1
dwwConfirmed, reviewed, tested and committed to HEAD. Thanks!