-- vladimirn <[EMAIL PROTECTED]> wrote (on Thursday, 11 September 2008, 03:02 PM -0700): > > I am windows user. > So i had in my signupForm: > ->addElement ( 'MultiSelect', 'promotion', .... > > everything works fine on my computer (windows vista) and when i uploaded > file on the web server(linux) i got error message that Plugin MultiSelect > wasnt found.... > > After two hours of updating library from zend framewrok, and headache, i > found that > ->addElement ( 'multiselect', 'promotion', ... is working. > All cases had to be lowered.
Not quite. It's more a case of case matters. Plugins are passed to ucfirst(), and then passed as is to the plugin loader. Both "Multiselect" and "multiselect" will work here, but not "multiSelect" or "MultiSelect". On the flip side, you want to use "MultiCheckbox" or "multiCheckbox", but not "Multicheckbox" or "multicheckbox". The only character where case does not matter is the first character; all other characters in the plugin name are case sensitive. -- Matthew Weier O'Phinney Software Architect | [EMAIL PROTECTED] Zend Framework | http://framework.zend.com/
