From 54bf2943be060dc6a5bb4aaec34af0370a59613f Mon Sep 17 00:00:00 2001 From: Shyotl Date: Thu, 27 Jun 2013 20:11:34 -0500 Subject: [PATCH] Use proper list column when when generating teleport url from teleport history list. --- indra/newview/llfloaterteleporthistory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfloaterteleporthistory.cpp b/indra/newview/llfloaterteleporthistory.cpp index a4ffe91fa..173aaf5a7 100644 --- a/indra/newview/llfloaterteleporthistory.cpp +++ b/indra/newview/llfloaterteleporthistory.cpp @@ -334,7 +334,7 @@ void LLFloaterTeleportHistory::onTeleport(void* data) LLFloaterTeleportHistory* self = (LLFloaterTeleportHistory*) data; // build secondlife::/app link from simstring for instant teleport to destination - std::string slapp = "secondlife:///app/teleport/" + self->mPlacesList->getFirstSelected()->getColumn(LIST_SLURL)->getValue().asString(); + std::string slapp = "secondlife:///app/teleport/" + self->mPlacesList->getFirstSelected()->getColumn(LIST_SIMSTRING)->getValue().asString(); LLUrlAction::teleportToLocation(slapp); }