If you look into gluon/tools.py 
there is this line:

session.flash = self.messages.password_changed

So there is a flash after password changed. perhaps you redirect to a page 
that overrides response.flash?

On Saturday, 12 October 2013 16:23:44 UTC-5, lesssugar wrote:
>
> I'm using auth.change_password() in my profile Settings section. The code 
> responsible for the form:
>
> change_password = auth.change_password(next=URL('profile', 'settings'))
> change_password.update(_class='formstyle', _name='change_password')
>
> return dict(change_password=change_password)
>
>
> The form works, the input is processed, the password gets changed. However 
> there's no flash message after submitting the form. I guess, as 
> change_password() is a build-in function, there should be a default flash 
> message.
>
> I tried adding this (below), and it also doesn't work:
>
> if change_password.accepted:
>     response.flash = "Password changed"
>
> Any ideas?
>
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to