mirror of https://github.com/BOINC/boinc.git
- MGR: Partial fix for wizard problem when a client automatically attempts to attach
to an account manager via cookies. This fix is good enough for the 6.8 client. We'll need to do a little more for 7.x and beyond. clientgui/ WizardAttach.cpp svn path=/trunk/boinc/; revision=24827
This commit is contained in:
parent
9d0553f7ea
commit
aaade7b57d
|
@ -9145,3 +9145,11 @@ Rom 19 Dec 2011
|
|||
win_build/installerv2/redist/Windows/x64/
|
||||
boinccas.dll
|
||||
boinccas95.dll
|
||||
|
||||
Rom 19 Dec 2011
|
||||
- MGR: Partial fix for wizard problem when a client automatically attempts to attach
|
||||
to an account manager via cookies. This fix is good enough for the 6.8 client.
|
||||
We'll need to do a little more for 7.x and beyond.
|
||||
|
||||
clientgui/
|
||||
WizardAttach.cpp
|
||||
|
|
|
@ -516,8 +516,8 @@ wxWizardPageEx* CWizardAttach::_PopPageTransition() {
|
|||
if (m_PageTransition.size() > 0) {
|
||||
pPage = m_PageTransition.top();
|
||||
m_PageTransition.pop();
|
||||
if ((pPage == m_ProjectPropertiesPage) || (pPage == m_ProjectProcessingPage) ||
|
||||
(pPage == m_AccountManagerPropertiesPage) || (pPage == m_AccountManagerProcessingPage))
|
||||
if ((pPage == m_ProjectPropertiesPage) ||
|
||||
(pPage == m_AccountManagerPropertiesPage))
|
||||
{
|
||||
// We want to go back to the page before we attempted to communicate
|
||||
// with any server.
|
||||
|
|
Loading…
Reference in New Issue