Skip to content
Snippets Groups Projects
Commit d6f6b640 authored by Richard Linden's avatar Richard Linden
Browse files

EXP-885 FIX v2.7.1 Release Viewer Update Available splash prompts the user to...

EXP-885 FIX v2.7.1 Release Viewer Update Available splash prompts the user to donwload the v2.7.2 Beta
Backed out changeset: 3a391669629d
parent ad3182c4
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
#include "llmd5.h" #include "llmd5.h"
#include "llsecondlifeurls.h" #include "llsecondlifeurls.h"
#include "v4color.h" #include "v4color.h"
#include "llversionviewer.h"
#include "llappviewer.h" #include "llappviewer.h"
#include "llbutton.h" #include "llbutton.h"
...@@ -748,20 +747,12 @@ void LLPanelLogin::loadLoginPage() ...@@ -748,20 +747,12 @@ void LLPanelLogin::loadLoginPage()
LLVersionInfo::getShortVersion().c_str(), LLVersionInfo::getShortVersion().c_str(),
LLVersionInfo::getBuild()); LLVersionInfo::getBuild());
char* curl_channel ; char* curl_channel = curl_escape(LLVersionInfo::getChannel().c_str(), 0);
char* curl_version = curl_escape(version.c_str(), 0); char* curl_version = curl_escape(version.c_str(), 0);
if(strcmp(LLVersionInfo::getChannel().c_str(), LL_CHANNEL))
{
curl_channel = curl_escape(LLVersionInfo::getChannel().c_str(), 0);
}
else //if LL_CHANNEL, direct it to "Second Life Beta Viewer".
{
curl_channel = curl_escape("Second Life Beta Viewer", 0);
}
oStr << "&channel=" << curl_channel; oStr << "&channel=" << curl_channel;
oStr << "&version=" << curl_version; oStr << "&version=" << curl_version;
curl_free(curl_channel); curl_free(curl_channel);
curl_free(curl_version); curl_free(curl_version);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment