Browse Source

added missing parens.

Taylor Otwell 13 years ago
parent
commit
7be960fb6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/validation/validator.php

+ 1 - 1
laravel/validation/validator.php

@@ -287,7 +287,7 @@ class Validator {
 
 		$files = IoC::container()->resolve('laravel.input')->file();
 
-		return (array_key_exists($attribute, $files) ? $value['size'] / 1024 : Str::length(trim($value));
+		return (array_key_exists($attribute, $files)) ? $value['size'] / 1024 : Str::length(trim($value));
 	}
 
 	/**