Browse Source

Added format parameter to Error->first method.

Taylor Otwell 13 years ago
parent
commit
89b5ad030e
1 changed files with 3 additions and 2 deletions
  1. 3 2
      system/validation/errors.php

+ 3 - 2
system/validation/errors.php

@@ -52,11 +52,12 @@ class Errors {
 	 * Get the first error message for an attribute.
 	 *
 	 * @param  string  $attribute
+	 * @param  string  $format
 	 * @return string
 	 */
-	public function first($attribute)
+	public function first($attribute, $format = ':message')
 	{
-		return (count($messages = $this->get($attribute)) > 0) ? $messages[0] : '';
+		return (count($messages = $this->get($attribute, $format)) > 0) ? $messages[0] : '';
 	}
 
 	/**