Browse Source

Fix formatting on Session::has method.

Taylor Otwell 14 years ago
parent
commit
525f53b54c
1 changed files with 6 additions and 6 deletions
  1. 6 6
      system/session.php

+ 6 - 6
system/session.php

@@ -77,12 +77,12 @@ class Session {
 	{
 		foreach (func_get_args() as $key)
 		{
-			if ( ! array_key_exists($key, static::$session['data']) and
-		         ! array_key_exists(':old:'.$key, static::$session['data']) and
-		         ! array_key_exists(':new:'.$key, static::$session['data']))
-		    {
-		    	return false;
-		    }
+			if ( ! array_key_exists($key, static::$session['data']) and 
+			     ! array_key_exists(':old:'.$key, static::$session['data']) and 
+			     ! array_key_exists(':new:'.$key, static::$session['data']))
+			{
+				return false;
+			}
 		}
 
 		return true;