### Eclipse Workspace Patch 1.0 #P drupal-district Index: sites/all/modules/login_destination/login_destination.module =================================================================== --- sites/all/modules/login_destination/login_destination.module (revision 1038) +++ sites/all/modules/login_destination/login_destination.module (working copy) @@ -19,7 +19,7 @@ * Implementation of hook_form_alter(). */ function login_destination_form_alter($form_id, &$form) { - if (($form_id == 'user_login_block' || $form_id == 'user_login') && login_destination_apply_redirect()) { + if (($form_id == 'user_login_block' || $form_id == 'user_login' || $form_id == 'ipauth_user_login') && login_destination_apply_redirect()) { $_SESSION['login_page'] = $_GET['q']; $form['#action'] = login_destination_get_destination(); }