witten
/
luminotes
Archived
1
0
Fork 0

Fixed broken account settings form submission.

This commit is contained in:
Dan Helfman 2008-06-02 14:19:34 -07:00
parent cf10cf8c82
commit 23f0cbe781
1 changed files with 4 additions and 2 deletions

View File

@ -1437,8 +1437,10 @@ Wiki.prototype.submit_form = function ( form ) {
self.share_notebook();
}
} else if ( url == "/users/update_settings" ) {
self.email_address = result.email_address || "";
self.display_message( "Your account settings have been updated." );
callback = function ( result ) {
self.email_address = result.email_address || "";
self.display_message( "Your account settings have been updated." );
}
}
this.invoker.invoke( url, "POST", args, callback, form );