Re: Auto-Magic in Formhelper

2008-01-23 Thread ProFire
Yup! I have submited an enhancement ticket on this! On Jan 23, 11:30 pm, Baz <[EMAIL PROTECTED]> wrote: > trac.cakephp.org > > Let's get the fix in. > > On Jan 23, 2008 4:28 AM, grigri <[EMAIL PROTECTED]> wrote: > > > > > Well, it's not a bug per-se, perhaps an oversight? > > > Anyway, there's a

Re: Auto-Magic in Formhelper

2008-01-23 Thread Baz
trac.cakephp.org Let's get the fix in. On Jan 23, 2008 4:28 AM, grigri <[EMAIL PROTECTED]> wrote: > > Well, it's not a bug per-se, perhaps an oversight? > > Anyway, there's a spot of code in FormHelper::input() that maps field > type to input type; if the type is not in the map array then it use

Re: Auto-Magic in Formhelper

2008-01-23 Thread grigri
Well, it's not a bug per-se, perhaps an oversight? Anyway, there's a spot of code in FormHelper::input() that maps field type to input type; if the type is not in the map array then it uses the default, which is a textarea. The current mapping is: $map = array( 'string' => 'text',

Auto-Magic in Formhelper

2008-01-23 Thread ProFire
Hi CakePHP Team, I'm a very satisfied Baker here. I've been using CakePHP for 2 months already and I really enjoy it. Compared to my previous experience with Spaghetti Framework, MVC Framework really rocks. I just have a little question to the CakePHP Team regarding the FormHelper. I'm not sure