Index: includes/menu.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/menu.inc,v retrieving revision 1.71.2.2 diff -u -p -r1.71.2.2 menu.inc --- includes/menu.inc 28 Nov 2005 15:45:50 -0000 1.71.2.2 +++ includes/menu.inc 13 Mar 2006 20:53:29 -0000 @@ -739,7 +739,7 @@ function _menu_build() { else { // It has a permanent ID. Only replace with non-custom menu items. if ($item->type & MENU_CREATED_BY_ADMIN) { - $_menu['items'][$item->mid] = array('path' => $item->path, 'access' => TRUE, 'callback' => ''); + $_menu['items'][$item->mid] = array('path' => $item->path, 'callback' => ''); } else { // Leave the old item around as a shortcut to this one. @@ -751,7 +751,7 @@ function _menu_build() { else { // The path was not declared, so this is a custom item or an orphaned one. if ($item->type & MENU_CREATED_BY_ADMIN) { - $_menu['items'][$item->mid] = array('path' => $item->path, 'access' => TRUE, 'callback' => ''); + $_menu['items'][$item->mid] = array('path' => $item->path, 'callback' => ''); if (!empty($item->path)) { $_menu['path index'][$item->path] = $item->mid; }