Browse Source

fixing bugs in validator and file classes.

Taylor Otwell 13 years ago
parent
commit
a6641130c4
2 changed files with 6 additions and 5 deletions
  1. 4 1
      laravel/file.php
  2. 2 4
      laravel/validator.php

+ 4 - 1
laravel/file.php

@@ -167,7 +167,10 @@ class File {
 		{
 			$mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
 
-			if (isset($mimes[$extension]) and in_array((array) $mimes[$extension])) return true;
+			if (isset($mimes[$extension]) and in_array($mime, (array) $mimes[$extension]))
+			{
+				return true;
+			}
 		}
 
 		return false;

+ 2 - 4
laravel/validator.php

@@ -225,9 +225,7 @@ class Validator {
 	{
 		$confirmed = $attribute.'_confirmation';
 
-		$confirmation = $this->attributes[$confirmed];
-
-		return array_key_exists($confirmed, $this->attributes) and $value == $confirmation;
+		return isset($this->attributes[$confirmed]) and $value == $this->attributes[$confirmed];
 	}
 
 	/**
@@ -241,7 +239,7 @@ class Validator {
 	 */
 	protected function validate_accepted($attribute, $value)
 	{
-		return $this->validate_required($attribute) and ($value == 'yes' or $value == '1');
+		return $this->validate_required($attribute, $value) and ($value == 'yes' or $value == '1');
 	}
 
 	/**