diff --git a/doc/contributions.txt b/doc/contributions.txt
index 71612af5443cff03f59671ff8bbeed194a037c5a..49c9c2cb1d075278c3aa545bf4155f6bc583cfa6 100755
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -794,6 +794,7 @@ Kitty Barnett
 	MAINT-6152
 	MAINT-6153
 	MAINT-6154
+	MAINT-6568
 Kolor Fall
 Komiko Okamoto
 Korvel Noh
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index da06cfd31114a310e2d180f081427271088dbf98..d328973baee35028de377f140ea160a80bde2b7a 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -914,8 +914,11 @@ U32 LLInventoryModel::updateItem(const LLViewerInventoryItem* item, U32 mask)
 			item_array_t* item_array = get_ptr_in_map(mParentChildItemTree, category_id);
 			if( item_array )
 			{
+				LLInventoryModel::LLCategoryUpdate update(category_id, 1);
+				gInventory.accountForUpdate(update);
+
 				// *FIX: bit of a hack to call update server from here...
-				new_item->updateServer(TRUE);
+				new_item->updateParentOnServer(FALSE);
 				item_array->push_back(new_item);
 			}
 			else
@@ -956,9 +959,11 @@ U32 LLInventoryModel::updateItem(const LLViewerInventoryItem* item, U32 mask)
 				item_array = get_ptr_in_map(mParentChildItemTree, parent_id);
 				if(item_array)
 				{
+					LLInventoryModel::LLCategoryUpdate update(parent_id, 1);
+					gInventory.accountForUpdate(update);
 					// *FIX: bit of a hack to call update server from
 					// here...
-					new_item->updateServer(TRUE);
+					new_item->updateParentOnServer(FALSE);
 					item_array->push_back(new_item);
 				}
 				else