DD-128 : Fixed. Do not allow items under the marketplace, even in inactive listings, to be worn.

meow-7.2.2
Merov Linden 2014-07-25 17:14:17 -07:00
parent 83603fc939
commit 9c04a5bfbb
1 changed files with 1 additions and 1 deletions

View File

@ -1944,7 +1944,7 @@ void LLInventoryAction::doToSelected(LLInventoryModel* model, LLFolderView* root
for (; set_iter != selected_items.end(); ++set_iter)
{
viewModel = dynamic_cast<LLFolderViewModelItemInventory *>((*set_iter)->getViewModelItem());
if (viewModel && LLMarketplaceData::instance().isInActiveFolder(viewModel->getUUID()))
if (viewModel && (depth_nesting_in_marketplace(viewModel->getUUID()) >= 0))
{
break;
}