summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorybridge.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-04-22 20:57:49 -0700
committerMerov Linden <merov@lindenlab.com>2014-04-22 20:57:49 -0700
commitd22944da00a5ade5eb97aa109bac624967ead94c (patch)
tree48f2cef6f7c25b95912b5a0d4d68d74d9fac9da0 /indra/newview/llinventorybridge.cpp
parent277539e5624f9a71186568d4a2d506033f76e312 (diff)
DD-58 : Forced listing ID to be an integer throughout. Verify we get an integer when using the associate UI.
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rwxr-xr-xindra/newview/llinventorybridge.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index d02ea949a8..e6ecd4e96e 100755
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -2057,7 +2057,7 @@ std::string LLFolderBridge::getLabelSuffix() const
// Listing folder case
if (LLMarketplaceData::instance().isListed(getUUID()))
{
- suffix = LLMarketplaceData::instance().getListingID(getUUID());
+ suffix = llformat("%d",LLMarketplaceData::instance().getListingID(getUUID()));
if (suffix.empty())
{
suffix = LLTrans::getString("MarketplaceNoID");