diff --git splash.module splash.module
index ed71fa2..a1b8609 100644
--- splash.module
+++ splash.module
@@ -60,17 +60,17 @@ function splash_boot() {
   }

   $splash			= TRUE;
-  $splash_when = variable_get('splash_when', array());
+  $splash_when = variable_get('splash_when', array());
   $splash_what = variable_get('splash_what', array());
   $cookie_name = (!empty($splash_when['cookie'])) ? $splash_when['cookie'] : 'splash_cookie';
   $cookie_data = (!empty($_COOKIE[$cookie_name])) ? (is_numeric($_COOKIE[$cookie_name]) ? array('time' => $_COOKIE[$cookie_name]) : (array) unserialize($_COOKIE[$cookie_name])) : array();
-
+
   /*** THE WHEN ***/
-
+
   include_once(str_replace('index.php', '', $_SERVER['SCRIPT_FILENAME']).'includes/common.inc');
   include_once(str_replace('index.php', '', $_SERVER['SCRIPT_FILENAME']).'includes/path.inc');
   include_once(str_replace('index.php', '', $_SERVER['SCRIPT_FILENAME']).'modules/filter/filter.module');
-
+
   // No WHAT
   if (empty($splash_what['content'])) {
 	  $splash = FALSE;
@@ -96,55 +96,62 @@ function splash_boot() {
   	$splash = FALSE;
 		$reason = 'Front page is splash page';
 	} else {
-
+
 		// Conditions
 		if (module_exists('condition') && is_array($splash_when['conditions'])) {
 			$splash = condition_selection_validate($splash_when['conditions']);
 			$reason = ($splash) ? 'Conditions true' : 'Conditions false';
 		}
-
+
 		// Frequency
 		if ($splash) {
-
-			// No cookie
-			if (!$cookie_data['time']) {
-				$splash = TRUE;
-			  $reason = 'No cookie';
-
-			} else {
-
-			  // Once
-			  if ($splash_when['frequency'] == 'once') {
-			  	$splash = FALSE;
-			    $reason = 'Once';
-			  // Every day
-			  } else if ($cookie_data['time'] && $splash_when['frequency'] == 'daily' && (time() - $cookie_data['time'] < 86400)) {
-			  	$splash = FALSE;
-			  	$reason = 'Every day';
-			  // Every week
-			  } else if ($cookie_data['time'] && $splash_when['frequency'] == 'weekly' && (time() - $cookie_data['time'] < 604800)) {
-			  	$splash = FALSE;
-			  	$reason = 'Every week';
-			  // Never
-			  } else if ($splash_when['frequency'] != 'always') {
-				  $splash = FALSE;
-				  $reason = 'Never';
-			  }
-		  }
+
+      // Never
+      if ($splash_when['frequency'] == "") {
+        $splash = FALSE;
+        $reason = 'Never';
+      }
+      else {
+  			// No cookie
+  			if (!$cookie_data['time']) {
+  				$splash = TRUE;
+  			  $reason = 'No cookie';
+
+  			} else {
+
+  			  // Once
+  			  if ($splash_when['frequency'] == 'once') {
+  			  	$splash = FALSE;
+  			    $reason = 'Once';
+  			  // Every day
+  			  } else if ($cookie_data['time'] && $splash_when['frequency'] == 'daily' && (time() - $cookie_data['time'] < 86400)) {
+  			  	$splash = FALSE;
+  			  	$reason = 'Every day';
+  			  // Every week
+  			  } else if ($cookie_data['time'] && $splash_when['frequency'] == 'weekly' && (time() - $cookie_data['time'] < 604800)) {
+  			  	$splash = FALSE;
+  			  	$reason = 'Every week';
+  			  // Never
+  			  } else if ($splash_when['frequency'] != 'always') {
+  				  $splash = FALSE;
+  				  $reason = 'Never';
+  			  }
+  		  }
+      }
 	  }
   }
