Do I need to customize my Inflections.php
> file to make this work or is this a bug that should be addressed? I'm
> using version 1.1.10.3825.
>
> Thanks

I got the same result. The following in /app/config/inflections.php
solved it:
$irregularPlural = array('salesanalysis' => 'salesanalyses');
I guess the inflection rules are never going to be perfect, but it
looks like cake does try to address this kind of pluralisation in
inflector.php 179-180:

'/(^analy)ses$/i' => '\1sis',
'/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' =>
'\1\2sis',

so I would say it is something which should be reported and looked at.


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Cake PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to