Skip to content

Instantly share code, notes, and snippets.

@mrchrisadams
Created September 8, 2010 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrchrisadams/570206 to your computer and use it in GitHub Desktop.
Save mrchrisadams/570206 to your computer and use it in GitHub Desktop.
<?php
// I want to redirect users to the same page after logging in (the log in form is embedded onto a page)
function client_util_form_alter(&$form, $form_state, $form_id) {
switch($form_id) {
case 'user_login':
$form['#redirect'] = FALSE;
break;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment