mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=7231
This commit is contained in:
parent
10c00b175c
commit
bd6828c7d1
|
@ -10263,8 +10263,11 @@ Rom 10 Aug 2005
|
|||
lookup_account.php
|
||||
|
||||
Rom 10 Aug 2005
|
||||
- Fix various parsing issues
|
||||
- Fix various parsing issues.
|
||||
- Fix a transition error when a project is not detected.
|
||||
|
||||
clientgui/
|
||||
WizAttachProject.cpp
|
||||
lib/
|
||||
gui_rpc_client_ops.C
|
||||
html/user/
|
||||
|
|
|
@ -1059,7 +1059,7 @@ wxWizardPage* CProjectPropertiesPage::GetNext() const
|
|||
} else if (GetProjectPropertiesSucceeded()) {
|
||||
// We were successful in retrieving the project properties
|
||||
return PAGE_TRANSITION_NEXT(ID_ACCOUNTINFOPAGE);
|
||||
} else if (!GetProjectPropertiesSucceeded() && !GetProjectPropertiesURLFailure()) {
|
||||
} else if (!GetProjectPropertiesSucceeded() && GetProjectPropertiesURLFailure()) {
|
||||
// Not a BOINC based project
|
||||
return PAGE_TRANSITION_NEXT(ID_ERRPROJECTNOTDETECTEDPAGE);
|
||||
} else if ((!GetCommunicateYahooSucceeded() && !GetCommunicateGoogleSucceeded()) && GetDeterminingConnectionStatusSucceeded()) {
|
||||
|
|
Loading…
Reference in New Issue