Browse Source

Refactoring Input class.

Taylor Otwell 13 years ago
parent
commit
c5a2752e8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/input.php

+ 1 - 1
system/input.php

@@ -78,7 +78,7 @@ class Input {
 		{
 		{
 			list($file, $key) = explode('.', $key);
 			list($file, $key) = explode('.', $key);
 
 
-			return (isset($_FILES[$file][$key])) ? $_FILES[$file][$key] : $default;
+			return Arr::get($_FILES[$file], $key, $default);
 		}
 		}
 
 
 		return Arr::get($_FILES, $key, $default);
 		return Arr::get($_FILES, $key, $default);