Skip to content

Commit

Permalink
Removing pluralize of pluralized name. Fixes #543
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Story <mark@mark-story.com>
  • Loading branch information
jrbasso authored and markstory committed Apr 5, 2010
1 parent d990c6e commit 91332fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/console/libs/shell.php
Expand Up @@ -632,7 +632,7 @@ function _singularHumanName($name) {
* @access protected
*/
function _pluralHumanName($name) {
return Inflector::humanize(Inflector::underscore(Inflector::pluralize($name)));
return Inflector::humanize(Inflector::underscore($name));
}

/**
Expand Down

0 comments on commit 91332fc

Please sign in to comment.