diff options
author | Cho <cho@lindenlab.com> | 2013-11-13 18:44:33 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-11-13 18:44:33 +0000 |
commit | 47918f4537ee924c4cb9652a72561b5febbddeb6 (patch) | |
tree | 72e34af0cfef0384038783fb1dff0dae9a204b8e /indra/newview/llfloaterflickr.cpp | |
parent | 19c1be0e055bd06cb3083a9c9d126a4907a90788 (diff) |
changed Twitter photo character limit to 100 just to be safe, and switched to use cap server for Flickr and Twitter service
Diffstat (limited to 'indra/newview/llfloaterflickr.cpp')
-rw-r--r-- | indra/newview/llfloaterflickr.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloaterflickr.cpp b/indra/newview/llfloaterflickr.cpp index 7140b527b9..0bfbd02a04 100644 --- a/indra/newview/llfloaterflickr.cpp +++ b/indra/newview/llfloaterflickr.cpp @@ -261,11 +261,13 @@ 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>"; + // Add it to the description (pretty crude, but we don't have a better option with photos) if (description.empty()) description = slurl_string; else - description = description + " " + slurl_string; + description = description + "\n\n" + slurl_string; } // Get the content rating |