# HG changeset patch # User Stu Tomlinson # Date 1225557909 0 # Node ID f108d707b6e1bfa9c7da2898237748b817ae31e0 # Parent ab5a49e46e3804bf8156332a6fb28b8641f00681 Don't populate the password field on the modify account dialog if we are not actually remembering it permanently diff -r ab5a49e46e38 -r f108d707b6e1 pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Sat Nov 01 16:24:56 2008 +0000 +++ b/pidgin/gtkaccount.c Sat Nov 01 16:45:09 2008 +0000 @@ -562,7 +562,8 @@ /* Set the fields. */ if (dialog->account != NULL) { - if (purple_account_get_password(dialog->account)) + if (purple_account_get_password(dialog->account) && + purple_account_get_remember_password(dialog->account)) gtk_entry_set_text(GTK_ENTRY(dialog->password_entry), purple_account_get_password(dialog->account));