summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorGilbert Gonzales <gilbert@lindenlab.com>2013-06-25 16:11:54 -0700
committerGilbert Gonzales <gilbert@lindenlab.com>2013-06-25 16:11:54 -0700
commit21379da780d975dd8a159b3459249d387bc2d023 (patch)
tree76bd341248e63785e125946fc8a345e9c1ad4323 /indra/newview
parentf081cca8dd79b4970082ecada831633ca6f9a501 (diff)
parentb497b121ed2d8964160ee79003debb9f5ab62a49 (diff)
merge
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloatersocial.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfloatersocial.cpp b/indra/newview/llfloatersocial.cpp
index 7ca96dd228..43819e65f4 100644
--- a/indra/newview/llfloatersocial.cpp
+++ b/indra/newview/llfloatersocial.cpp
@@ -43,6 +43,7 @@ static LLRegisterPanelClassWrapper<LLSocialPhotoPanel> t_panel_photo("llsocialph
static LLRegisterPanelClassWrapper<LLSocialCheckinPanel> t_panel_checkin("llsocialcheckinpanel");
const S32 MAX_POSTCARD_DATASIZE = 1024 * 1024; // one megabyte
+const std::string DEFAULT_CHECKIN_ICON_URL = "http://logok.org/wp-content/uploads/2010/07/podcastlogo1.jpg";
std::string get_map_url()
{
@@ -413,7 +414,7 @@ void LLSocialCheckinPanel::onSend()
// Optionally add the region map view
bool add_map_view = getChild<LLUICtrl>("add_place_view_cb")->getValue().asBoolean();
- std::string map_url = (add_map_view ? get_map_url() : "");
+ std::string map_url = (add_map_view ? get_map_url() : DEFAULT_CHECKIN_ICON_URL);
// Get the caption
std::string caption = getChild<LLUICtrl>("place_caption")->getValue().asString();