? 457450-followup.patch ? sites/all/modules/devel ? sites/default/files ? sites/default/private Index: modules/menu/menu.api.php =================================================================== RCS file: /cvs/drupal/drupal/modules/menu/menu.api.php,v retrieving revision 1.10 diff -u -p -r1.10 menu.api.php --- modules/menu/menu.api.php 17 Sep 2009 04:07:39 -0000 1.10 +++ modules/menu/menu.api.php 26 Sep 2009 16:01:37 -0000 @@ -150,14 +150,12 @@ function hook_translated_menu_link_alter /** * Inform modules that a menu link has been created. * - * This hook is used to notify module that menu items have been + * This hook is used to notify modules that menu items have been * created. Contributed modules may use the information to perform * actions based on the information entered into the menu system. * * @param $link - * The $link record saved into the {menu_links} table. - * @return - * None. + * Associative array defining a menu link as passed into menu_link_save(). * * @see hook_menu_link_update() * @see hook_menu_link_delete() @@ -174,14 +172,12 @@ function hook_menu_link_insert($link) { /** * Inform modules that a menu link has been updated. * - * This hook is used to notify module that menu items have been + * This hook is used to notify modules that menu items have been * updated. Contributed modules may use the information to perform * actions based on the information entered into the menu system. * * @param $link - * The $link record saved into the {menu_links} table. - * @return - * None. + * Associative array defining a menu link as passed into menu_link_save(). * * @see hook_menu_link_insert() * @see hook_menu_link_delete() @@ -200,14 +196,12 @@ function hook_menu_link_update($link) { /** * Inform modules that a menu link has been deleted. * - * This hook is used to notify module that menu items have been + * This hook is used to notify modules that menu items have been * deleted. Contributed modules may use the information to perform * actions based on the information entered into the menu system. * * @param $link - * The $link record saved into the {menu_links} table. - * @return - * None. + * Associative array defining a menu link as passed into menu_link_save(). * * @see hook_menu_link_insert() * @see hook_menu_link_update()