mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Removing pluralize of pluralized name. Fixes #543
Signed-off-by: Mark Story <mark@mark-story.com>
This commit is contained in:
parent
d990c6ed44
commit
91332fc64b
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue