diff --git a/doc/contributions.txt b/doc/contributions.txt
index 2f9d0c2c86ecc359ead1240cebf737c61a66805a..9f86c564549b9699ba49fc0374fc3099a34795a1 100755
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -727,6 +727,7 @@ Kunnis Basiat
 Lance Corrimal
 	STORM-1910
 	VWR-25269
+	STORM-2008
 Latif Khalifa
 	VWR-5370
 leliel Mirihi
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index 4c98181ef3c288290545ff63043631b94107c6d0..c5e98915fca7ce4e1ab831094e22b5bc8924f80d 100755
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -1431,12 +1431,12 @@ void LLAppearanceMgr::takeOffOutfit(const LLUUID& cat_id)
 		uuids_to_remove.push_back(item->getUUID());
 	}
 	removeItemsFromAvatar(uuids_to_remove);
-	// now deactivating all gestures in that folder
 
+	// deactivate all gestures in the outfit folder
 	LLInventoryModel::item_array_t gest_items;
-        getDescendentsOfAssetType(cat_id, gest_items, LLAssetType::AT_GESTURE, false);
-        for(S32 i = 0; i  < gest_items.count(); ++i)
-        {
+	getDescendentsOfAssetType(cat_id, gest_items, LLAssetType::AT_GESTURE, false);
+	for(S32 i = 0; i  < gest_items.count(); ++i)
+	{
 		LLViewerInventoryItem *gest_item = gest_items.get(i);
 		if ( LLGestureMgr::instance().isGestureActive( gest_item->getLinkedUUID()) )
 		{