Lo he instalado en windows con xampp, lo he instalado con xampp en linux, no me ha dado ningun error, incluso ahora recien lo instale en una pc nueva para seguir testeando, lo que te pasa es realmente muy extraño.
AlvaroG: esta instalando OpenAtrium, el problema es de un modulo contribuido. Pero a mi nunca me dio fallos.
Este es el codigo completo de la funcion:
Código PHP:
/**
* Implementation of hook_menu_alter().
* Take over menu items generated by the user module for our categories.
*/
function content_profile_menu_alter(&$items) {
foreach (content_profile_get_types('names', 'edit_tab', 'sub') as $type => $type_name) {
$item = &$items['user/%user_category/edit/'. $type];
$item = array(
'page callback' => 'content_profile_page_edit',
'page arguments' => array($type, 1),
'access callback' => 'content_profile_page_access',
'access arguments' => array($type, 1),
'file' => 'node.pages.inc',
'file path' => drupal_get_path('module', 'node'),
) + $item;
}
}