diff options
author | Jacek Antonelli | 2009-05-24 02:59:24 -0500 |
---|---|---|
committer | Jacek Antonelli | 2009-05-24 02:59:40 -0500 |
commit | b2627d927f1642bea84b92adfccd9403676e1341 (patch) | |
tree | 07f069e63cfa633b9bd0d07b4eecc229ef67f974 /linden/indra/newview/llpanelplace.cpp | |
parent | Second Life viewer sources 1.23.1-RC (diff) | |
download | meta-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.cpp | 3 |
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 | ||