summaryrefslogtreecommitdiff
path: root/indra/newview/llinventoryfunctions.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-11-16 14:26:33 -0800
committerMerov Linden <merov@lindenlab.com>2014-11-16 14:26:33 -0800
commit43745ce2714eca8dce95e08a89eeb3c278b0be3f (patch)
tree48961bcc30fac8d9ad04f70f53aa7e7fedfdaecf /indra/newview/llinventoryfunctions.cpp
parentd0afd691526a51a99223d056398c1ede5bb93494 (diff)
DD-281 : Do not unlist listings that go out of stock
Diffstat (limited to 'indra/newview/llinventoryfunctions.cpp')
-rwxr-xr-xindra/newview/llinventoryfunctions.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp
index e5a515383e..a11339358a 100755
--- a/indra/newview/llinventoryfunctions.cpp
+++ b/indra/newview/llinventoryfunctions.cpp
@@ -1565,14 +1565,13 @@ bool validate_marketplacelistings(LLInventoryCategory* cat, validation_callback_
cb(message,LLError::LEVEL_ERROR);
}
}
- // If this is a legit but empty stock folder, raise an error
else if ((folder_type == LLFolderType::FT_MARKETPLACE_STOCK) && (depth > 2))
{
- result = false;
+ // If this is a legit but empty stock folder, warn only (listing must stay searchable when empty)
if (cb)
{
std::string message = indent + cat->getName() + LLTrans::getString("Marketplace Validation Error Empty Stock");
- cb(message,LLError::LEVEL_ERROR);
+ cb(message,LLError::LEVEL_WARN);
}
}
else if (cb)