Change tab names
Needed to rename the tab on the user form. Found a nifty way to do this by using the hook_menu_alter function. I added this to my custom module:
function gl_customizations_menu_alter(&$items) { $items['user/password']['title'] = t('Email Password Request');}

- Categories:

Comments
Post new comment