_coder_review_6x_menu_set_location_warning()sites/all/modules/coder/coder_review/includes/coder_review_6x.inc, line 964
<?php
function _coder_review_6x_menu_set_location_warning() {
return array(
'#warning' => t('!menu_set_location() is deprecated. Use !drupal_set_breadcrumb() to set a custom breadcrumb or !menu_set_item() to set the current location in the menu tree.',
array(
'!menu_set_location' => theme('drupalapi', 'menu_set_location', '5'),
'!drupal_set_breadcrumb' => theme('drupalapi', 'drupal_set_breadcrumb', '6'),
'!menu_set_item' => theme('drupalapi', 'menu_set_item', '6'),
)
),
'#link' => 'http://drupal.org/node/114774#menu_set_location',
);
}
?>