diff --git a/indra/newview/llassetuploadresponders.cpp b/indra/newview/llassetuploadresponders.cpp
index a0be6efdc253bc5459af3d0890d9aeca2dcc86aa..9a66bae24731bfb4c6f79095d9a2b8a4b4b47bdc 100644
--- a/indra/newview/llassetuploadresponders.cpp
+++ b/indra/newview/llassetuploadresponders.cpp
@@ -73,7 +73,7 @@ static const S32 FILE_COUNT_DISPLAY_THRESHOLD = 5;
 
 void dialog_refresh_all();
 
-static void on_new_single_inventory_upload_complete(
+void on_new_single_inventory_upload_complete(
 	LLAssetType::EType asset_type,
 	LLInventoryType::EType inventory_type,
 	const std::string inventory_type_string,
@@ -94,11 +94,6 @@ static void on_new_single_inventory_upload_complete(
 		LLNotificationsUtil::add("UploadPayment", args);
 	}
 
-	// Actually add the upload to viewer inventory
-	llinfos << "Adding " << server_response["new_inventory_item"].asUUID()
-			<< " " << server_response["new_asset"].asUUID()
-			<< " to inventory." << llendl;
-
 	if( item_folder_id.notNull() )
 	{
 		U32 everyone_perms = PERM_NONE;
@@ -165,15 +160,6 @@ static void on_new_single_inventory_upload_complete(
 				server_response["new_inventory_item"].asUUID(),
 				TAKE_FOCUS_NO);
 
-			if(
-				(LLAssetType::AT_TEXTURE == asset_type ||
-				 LLAssetType::AT_SOUND == asset_type) &&
-				(LLFilePicker::instance().getFileCount() <=
-				 FILE_COUNT_DISPLAY_THRESHOLD) )
-			{
-				panel->openSelected();
-			}
-
 			// restore keyboard focus
 			gFocusMgr.setKeyboardFocus(focus);
 		}
diff --git a/indra/newview/llviewermenufile.h b/indra/newview/llviewermenufile.h
index 7ffa5d5e5748a3c94f829acb0d52e73abadd5860..e700b0565ee13e7d712ab0076ad69ae2c6d276e5 100644
--- a/indra/newview/llviewermenufile.h
+++ b/indra/newview/llviewermenufile.h
@@ -110,4 +110,15 @@ LLSD generate_new_resource_upload_capability_body(
 	U32 group_perms,
 	U32 everyone_perms);
 
+void on_new_single_inventory_upload_complete(
+	LLAssetType::EType asset_type,
+	LLInventoryType::EType inventory_type,
+	const std::string inventory_type_string,
+	const LLUUID& item_folder_id,
+	const std::string& item_name,
+	const std::string& item_description,
+	const LLSD& server_response,
+	S32 upload_price);
+
+
 #endif