Index: sites/all/modules/frontnode/frontnode.module
===================================================================
--- sites/all/modules/frontnode/frontnode.module	(revision 68)
+++ sites/all/modules/frontnode/frontnode.module	(working copy)
@@ -87,7 +87,7 @@
  *   Node ID to check.
  */
 function _frontnode_frontpage($nid) {
-  return $nid == variable_get('frontnode_nid', 0) ? TRUE : FALSE;
+  return $nid === variable_get('frontnode_nid', 0) ? TRUE : FALSE;
 }
 
 /**
@@ -112,4 +112,4 @@
   variable_set('frontnode_nid', 0);
   variable_set('site_frontpage', variable_get('frontnode_orig', 'node'));
   variable_set('frontnode_orig', '');
-}
\ No newline at end of file
+}
