From 54c9226665b90787f5e56d3501d8abd9072fc715 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Fri, 19 Feb 2016 10:08:24 -0500 Subject: [PATCH] MGR: If an attempt to attach to a project fails because a setup cookie expires, null out the setup cookie value so that when the wizard prompts for credentials they are used instead. --- clientgui/ProjectProcessingPage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clientgui/ProjectProcessingPage.cpp b/clientgui/ProjectProcessingPage.cpp index 355dacb2c9..03844adbab 100644 --- a/clientgui/ProjectProcessingPage.cpp +++ b/clientgui/ProjectProcessingPage.cpp @@ -501,6 +501,7 @@ void CProjectProcessingPage::OnStateChange( CProjectProcessingPageEvent& WXUNUSE (ERR_BAD_EMAIL_ADDR == ao->error_num) || (ERR_BAD_PASSWD == ao->error_num) ) { + pWA->SetProjectSetupCookie(wxEmptyString); SetProjectAccountNotFound(true); } else { SetProjectAccountNotFound(false);