Browse Source

fix syntax error in upload_of... add types to file_wrong_type lang message.

Taylor Otwell 13 years ago
parent
commit
fef1809982
2 changed files with 2 additions and 2 deletions
  1. 1 1
      application/lang/en/validation.php
  2. 1 1
      system/validation/rules/upload_of.php

+ 1 - 1
application/lang/en/validation.php

@@ -45,7 +45,7 @@ return array(
 	|--------------------------------------------------------------------------
 	*/
 
-	"file_wrong_type" => "The :attribute is an invalid file type.",
+	"file_wrong_type" => "The :attribute must be a file of type: :types.",
 	"file_too_big" => "The :attribute exceeds size limit of :maxkb.",
 
 );

+ 1 - 1
system/validation/rules/upload_of.php

@@ -106,7 +106,7 @@ class Upload_Of extends Nullable_Rule {
 	 */
 	public function is_image()
 	{
-		$this->types = array_merge($this->types, array('jpg', 'gif', 'png', 'bmp'))
+		$this->types = array_merge($this->types, array('jpg', 'gif', 'png', 'bmp'));
 		return $this;
 	}