The controller names are supposed to be able to be camel case and we have always been able to name them as such. However after checking out the 0.6.0 framework i decided to check out the module support so i could put my controllers into subdirectories and it appears the came case is no longer supported. Does anyone know if this is by design or if it's a bug that needs to be reported someplace?
Just as an example to illustrate what i mean, i have a controller called PackageSelectController.php and now with module support i put it into an Order module so using the rewrite router i now reference it as BASE_URL/Order/PackageSelect/ however debugging this i can see in the dispatcher it takes the controller name and passes it to strtolower() so we get "packageselect" then it calls ucfirst() on that so we end up with "Packageselect" as the name of the controller which won't exist. So my main question again is, is this by design and we shouldn't be using came case names any more for controllers, or is this a bug that needs to get reported? Thanks -chris -- View this message in context: http://www.nabble.com/CamelCase-controller-names-tf2926690s16154.html#a8181833 Sent from the Zend Framework mailing list archive at Nabble.com.
