diff --git a/doc/contributions.txt b/doc/contributions.txt
index 99527c0587dca18d29b00c8d23b330b8cb8cfc61..c50c57feea96ddc9c7c3764cc77f55bae81b61fe 100755
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -674,6 +674,7 @@ Jonathan Yap
 	OPEN-161
 	STORM-1953
 	STORM-1957
+	STORM-1980
 Kadah Coba
 	STORM-1060
     STORM-1843
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index ab9ea5618e87230640d52639022b1ef55c8c154f..ebc6ff816528d2a0c21f2fb82ca2fa78411b965b 100755
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -6085,6 +6085,7 @@ void process_alert_core(const std::string& message, BOOL modal)
 			LLStringUtil::convertToS32(text.substr(18), mins);
 			args["MINUTES"] = llformat("%d",mins);
 			LLNotificationsUtil::add("RegionRestartMinutes", args);
+			send_sound_trigger(LLUUID(gSavedSettings.getString("UISndAlert")), 1.0f);
 		}
 		else if (text.substr(0,17) == "RESTART_X_SECONDS")
 		{
@@ -6092,6 +6093,7 @@ void process_alert_core(const std::string& message, BOOL modal)
 			LLStringUtil::convertToS32(text.substr(18), secs);
 			args["SECONDS"] = llformat("%d",secs);
 			LLNotificationsUtil::add("RegionRestartSeconds", args);
+			send_sound_trigger(LLUUID(gSavedSettings.getString("UISndAlert")), 1.0f);
 		}
 		else
 		{