diff options
-rw-r--r-- | ChangeLog.txt | 7 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index b992e08..ea8f4c5 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -1,3 +1,10 @@ | |||
1 | 2008-12-11 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
2 | |||
3 | * linden/indra/newview/llfloaterabout.cpp: | ||
4 | Fixed bad string comparison (rel notes url) [#28] | ||
5 | Reported by Balp Allen. | ||
6 | |||
7 | |||
1 | 2008-12-10 Jacek Antonelli <jacek.antonelli@gmail.com> | 8 | 2008-12-10 Jacek Antonelli <jacek.antonelli@gmail.com> |
2 | 9 | ||
3 | * linden/indra/newview/llpanellogin.cpp: | 10 | * linden/indra/newview/llpanellogin.cpp: |
diff --git a/linden/indra/newview/llfloaterabout.cpp b/linden/indra/newview/llfloaterabout.cpp index 59e3100..f6e7792 100644 --- a/linden/indra/newview/llfloaterabout.cpp +++ b/linden/indra/newview/llfloaterabout.cpp | |||
@@ -268,7 +268,7 @@ static std::string get_viewer_release_notes_url() | |||
268 | 268 | ||
269 | std::ostringstream test_version; | 269 | std::ostringstream test_version; |
270 | 270 | ||
271 | if(IMP_VERSION_TEST != "") | 271 | if( strcmp(IMP_VERSION_TEST, "") != 0 ) |
272 | test_version << "#" << "Imprudence_" << version.str() << "_" << IMP_VERSION_TEST; | 272 | test_version << "#" << "Imprudence_" << version.str() << "_" << IMP_VERSION_TEST; |
273 | 273 | ||
274 | std::ostringstream url; | 274 | std::ostringstream url; |