Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function mymodule_node_presave(){
  2. $GLOBAL['dont_redirect']=true;
  3. }
  4. function mymodule_drupal_goto_alter(&$path){
  5. if ($GLOBAL['dont_redirect']==true){
  6. $path = "";
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement