aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelplace.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2009-05-24 02:59:24 -0500
committerJacek Antonelli2009-05-24 02:59:40 -0500
commitb2627d927f1642bea84b92adfccd9403676e1341 (patch)
tree07f069e63cfa633b9bd0d07b4eecc229ef67f974 /linden/indra/newview/llpanelplace.cpp
parentSecond Life viewer sources 1.23.1-RC (diff)
downloadmeta-impy-b2627d927f1642bea84b92adfccd9403676e1341.zip
meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.tar.gz
meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.tar.bz2
meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.tar.xz
Second Life viewer sources 1.23.2-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpanelplace.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llpanelplace.cpp b/linden/indra/newview/llpanelplace.cpp
index 815152c..7ca3622 100644
--- a/linden/indra/newview/llpanelplace.cpp
+++ b/linden/indra/newview/llpanelplace.cpp
@@ -466,7 +466,8 @@ bool LLPanelPlace::callbackAuctionWebPage(const LLSD& notification, const LLSD&
466 if (0 == option) 466 if (0 == option)
467 { 467 {
468 std::string url; 468 std::string url;
469 url = AUCTION_URL + llformat("%010d", response["auction_id"].asInteger()); 469 S32 auction_id = notification["payload"]["auction_id"].asInteger();
470 url = AUCTION_URL + llformat("%010d", auction_id );
470 471
471 llinfos << "Loading auction page " << url << llendl; 472 llinfos << "Loading auction page " << url << llendl;
472 473