Index: includes/path.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/path.inc,v retrieving revision 1.4 diff -u -p -r1.4 path.inc --- includes/path.inc 24 Apr 2006 19:25:37 -0000 1.4 +++ includes/path.inc 28 Jun 2006 12:24:18 -0000 @@ -197,5 +197,5 @@ function drupal_set_title($title = NULL) function drupal_is_front_page() { // As drupal_init_path updates $_GET['q'] with the 'site_frontpage' path, // rely on $_REQUEST to verify the original value of 'q'. - return !isset($_REQUEST['q']); + return !isset($_REQUEST['q']) || $_REQUEST['q'] == variable_get('site_frontpage', 'node'); }