diff options
author | Oz Linden <oz@lindenlab.com> | 2013-07-16 17:11:31 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-07-16 17:11:31 -0400 |
commit | 611c31a80173473431ba47a7c2037e710465453b (patch) | |
tree | 3ff740e6345448ad9958ef55bc756c6c0a06aa83 /indra | |
parent | 725288e93a441a0757ca5e16973e08d2b2b205c6 (diff) |
CHOP-966: use 4 part version numbers for release notes urls
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llfloaterabout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index 83fb887d81..ab3dd9443f 100755 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -307,12 +307,12 @@ LLSD LLFloaterAbout::getInfo() static std::string get_viewer_release_notes_url() { // return a URL to the release notes for this viewer, such as: - // http://wiki.secondlife.com/wiki/Release_Notes/Second Life Beta Viewer/2.1.0 + // http://wiki.secondlife.com/wiki/Release_Notes/Second Life Beta Viewer/2.1.0.123456 std::string url = LLTrans::getString("RELEASE_NOTES_BASE_URL"); if (! LLStringUtil::endsWith(url, "/")) url += "/"; url += LLVersionInfo::getChannel() + "/"; - url += LLVersionInfo::getShortVersion(); + url += LLVersionInfo::getVersion(); return LLWeb::escapeURL(url); } |