If you mean you don't want the hash to show in the field then add 'value' => null to your input parameters, otherwise if you want to show the password then I personally wouldn't show an existing password for edit (i.e. someone watching over the users shoulder, session still active after user has left the computer and someone else using it etc)
What I would do is have a field to enter the current password, then a field for new password (and a confirm field to ensure the password isn't typed incorrectly). If the current password matches and the new password fields match each other then reset the password. I am assuming your password uses the auth method of hashing, this means you cannot decrypt it - you'd need to change it to another encryption method i.e. Blowfish On 16 March 2011 10:31, andy_the ultimate baker < [email protected]> wrote: > hi friends > i m trying to get my actual password on edit > > but its coming hash encoded, please tell me any solluton. > > > andy > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http://ask.cakephp.org and help > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > [email protected] For more options, visit this group > at http://groups.google.com/group/cake-php > -- Kind Regards Stephen http://www.ninjacodermonkey.co.uk -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
