Removing pluralize of pluralized name. Fixes #543

Signed-off-by: Mark Story <mark@mark-story.com>
This commit is contained in:
Juan Basso 2010-04-04 18:06:31 -03:00 committed by Mark Story
parent d990c6ed44
commit 91332fc64b

View file

@ -632,7 +632,7 @@ class Shell extends Object {
* @access protected
*/
function _pluralHumanName($name) {
return Inflector::humanize(Inflector::underscore(Inflector::pluralize($name)));
return Inflector::humanize(Inflector::underscore($name));
}
/**