Newbie asks.
Why does the newest (I downloaded it today) version use deprecated
helpers?
Notice: Method input() is deprecated in HtmlHelper: see
FormHelper::input or FormHelper::text in /app/web/dev/cake/cake/libs/
view/helpers/html.php on line 608
Notice: Method password() is deprecated in HtmlHelper: see
FormHelper::input or FormHelper::password in /app/web/dev/cake/cake/
libs/view/helpers/html.php on line 517
I started using in my controller:
var $helpers = array('Html', 'Form', 'Input', 'Password', 'Text',
'Password');
Then changed it to:
var $helpers = array('Form', 'Input', 'Password', 'Text',
'Password');
Same error!
And how can I get around this problem?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---