Browse Source

Fixed plural count check

Phill Sparks 13 years ago
parent
commit
e84fb806f8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/inflector.php

+ 2 - 2
laravel/inflector.php

@@ -138,7 +138,7 @@ class Inflector {
 	 */
 	 */
 	public static function plural($value, $count = null)
 	public static function plural($value, $count = null)
 	{
 	{
-		if ( ! is_null($count) and $count <= 1) return $value;
+		if ( ! is_null($count) and $count == 1) return $value;
 
 
 		$irregular = array_flip(static::$irregular);
 		$irregular = array_flip(static::$irregular);
 
 
@@ -200,4 +200,4 @@ class Inflector {
 		return $value;
 		return $value;
 	}
 	}
 
 
-}
+}