summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterflickr.cpp
diff options
context:
space:
mode:
authorCho <cho@lindenlab.com>2013-11-13 20:32:06 +0000
committerCho <cho@lindenlab.com>2013-11-13 20:32:06 +0000
commit377dd51688dea6bd83f0a9b70be12528f8a891c3 (patch)
tree7d7d17166363e370b12f36dd999fe719dee0a135 /indra/newview/llfloaterflickr.cpp
parent47918f4537ee924c4cb9652a72561b5febbddeb6 (diff)
added fancier link description text and switched back to using dev servers instead of caps for Flickr and Twitter
Diffstat (limited to 'indra/newview/llfloaterflickr.cpp')
-rw-r--r--indra/newview/llfloaterflickr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfloaterflickr.cpp b/indra/newview/llfloaterflickr.cpp
index 0bfbd02a04..5a05c47416 100644
--- a/indra/newview/llfloaterflickr.cpp
+++ b/indra/newview/llfloaterflickr.cpp
@@ -53,6 +53,7 @@ static LLRegisterPanelClassWrapper<LLFlickrAccountPanel> t_panel_account("llflic
const S32 MAX_POSTCARD_DATASIZE = 1024 * 1024; // one megabyte
const std::string DEFAULT_PHOTO_QUERY_PARAMETERS = "?sourceid=slshare_photo&utm_source=flickr&utm_medium=photo&utm_campaign=slshare";
+const std::string DEFAULT_PHOTO_LINK_TEXT = "VISIT THIS LOCATION NOW";
///////////////////////////
//LLFlickrPhotoPanel///////
@@ -261,7 +262,7 @@ void LLFlickrPhotoPanel::sendPhoto()
// Add query parameters so Google Analytics can track incoming clicks!
slurl_string += DEFAULT_PHOTO_QUERY_PARAMETERS;
- slurl_string = "<a href=\"" + slurl_string + "\">VISIT THIS LOCATION</a>";
+ slurl_string = "<a href=\"" + slurl_string + "\">" + DEFAULT_PHOTO_LINK_TEXT + "</a>";
// Add it to the description (pretty crude, but we don't have a better option with photos)
if (description.empty())