Browse Source

fix file validation check in validator.

Taylor Otwell 13 years ago
parent
commit
09b4471a5d
1 changed files with 0 additions and 4 deletions
  1. 0 4
      laravel/validator.php

+ 0 - 4
laravel/validator.php

@@ -219,10 +219,6 @@ class Validator {
 		{
 			return false;
 		}
-		elseif (is_array($value) and count($value) == 0)
-		{
-			return false;
-		}
 		elseif ( ! is_null(Input::file($attribute)) and $value['tmp_name'] == '')
 		{
 			return false;