Index: includes/menu.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/menu.inc,v retrieving revision 1.79.2.3 diff -u -p -r1.79.2.3 menu.inc --- includes/menu.inc 28 Nov 2005 15:45:19 -0000 1.79.2.3 +++ includes/menu.inc 19 Feb 2006 23:41:38 -0000 @@ -803,7 +803,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. @@ -815,7 +815,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; }