Browse Source

added integer validation check to user auth closure.

Taylor Otwell 13 years ago
parent
commit
e6f84bffd4
1 changed files with 4 additions and 1 deletions
  1. 4 1
      application/config/auth.php

+ 4 - 1
application/config/auth.php

@@ -21,7 +21,10 @@ return array(
 
 
 	'user' => function($id)
 	'user' => function($id)
 	{
 	{
-		if ( ! is_null($id)) return User::find($id);
+		if ( ! is_null($id) and filter_var($id, FILTER_VALIDATE_INT) !== false)
+		{
+			return User::find($id);
+		} 
 	},
 	},
 
 
 	/*
 	/*