Index: splash.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/splash/splash.module,v
retrieving revision 1.4.2.1
diff -u -r1.4.2.1 splash.module
--- splash.module	19 Aug 2010 20:02:15 -0000	1.4.2.1
+++ splash.module	20 Aug 2010 18:46:27 -0000
@@ -111,7 +111,11 @@
 			} else {
 	  
 			  // Once
-			  if ($splash_when['frequency'] == 'once') {
+			  if (!in_array($splash_when['frequency'], array('once', 'daily', 'weekly', 'always')) {
+			  	$splash = FALSE;
+			    $reason = 'Never';
+			  // Every day
+			  } else if ($splash_when['frequency'] == 'once') {
 			  	$splash = FALSE;
 			    $reason = 'Once';
 			  // Every day

