Merge branch 'hotfix/fix_markdown' into staging

Conflicts:
	laravel/documentation/install.md
This commit is contained in:
Shawn McCool
2012-07-11 22:35:24 +02:00
3 changed files with 6 additions and 5 deletions

View File

@@ -205,7 +205,7 @@ class Input {
*/
public static function has_file($key)
{
return ! is_null(static::file("{$key}.tmp_name"));
return strlen(static::file("{$key}.tmp_name", "")) > 0;
}
/**