<
carlosantoniodasi...@gmail.com> wrote:
> I believe you could just override the update_with_password in your model, to
> sth like this:
>
> def update_with_password(params={})
> if params[:password].blank?
> params.delete(:password)
> params.delete(:password_confirmation) if
> params[:password_confirmation].blank?
> end
>
> update_attributes(params)
> end
>
> This way you don't need current_password.
> Please let us know if that works for you, and if so, please update the wiki
> removing that steps and adding this one ok?
>
>
>
>
>
> On Fri, Oct 15, 2010 at 9:55 AM, guivinicius <
gui.vinic...@gmail.com> wrote:
> > Hi guys,
>
> > Someone here already tried the steps from wikipage to update user
> > attributes without password ?
>