Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Created May 30, 2014 04:09
Show Gist options
  • Save flashvnn/db4bac7f40e4350170c9 to your computer and use it in GitHub Desktop.
Save flashvnn/db4bac7f40e4350170c9 to your computer and use it in GitHub Desktop.
Force drupal redirect with drupal_goto
<?php
function mymodule_force_goto($url) {
$_GET['destination'] = $url;
drupal_goto($url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment