Browse Source

Merge pull request #725 from kapv89/patch-1

Changed a line which causes "illegal string offset" error to be thrown i...
Taylor Otwell 12 years ago
parent
commit
aa687d039d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/validator.php

+ 1 - 1
laravel/validator.php

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