Home ›
Redirect to Drupal front pageRedirect to Drupal front page
Submitted by Benjamin Melançon on September 24, 2008 - 6:32pm
<?php
// if the data's not good, send us to the home page
// note: drupal_goto without any arguments sends to / - the front page
// or could use <front> -- url() is called and treats the same
// so this is not necessary:
return drupal_goto(drupal_get_normal_path(variable_get('site_frontpage', 'node')));
// this will do:
return drupal_goto();
?>
Comments
Post new comment