diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp
index 19b233fdf067c2e419c88ca88e107a825d578d81..bc253bb2fd292dc71f630808c8f8eed7906bb063 100755
--- a/indra/newview/llfloaterregioninfo.cpp
+++ b/indra/newview/llfloaterregioninfo.cpp
@@ -1103,8 +1103,11 @@ void LLPanelRegionDebugInfo::onClickTopScripts(void* data)
 // static
 void LLPanelRegionDebugInfo::onClickRestart(void* data)
 {
-	LLNotificationsUtil::add("ConfirmRestart", LLSD(), LLSD(), 
-		boost::bind(&LLPanelRegionDebugInfo::callbackRestart, (LLPanelRegionDebugInfo*)data, _1, _2));
+	LLPanelRegionDebugInfo* self = static_cast<LLPanelRegionDebugInfo*>(data);
+	LLSD payload;
+	payload["SECONDS"] = self->getChild<LLUICtrl>("restart_timer")->getValue().asString();
+	LLNotificationsUtil::add("ConfirmRestart", payload, payload,
+		boost::bind(&LLPanelRegionDebugInfo::callbackRestart, self, _1, _2));
 }
 
 bool LLPanelRegionDebugInfo::callbackRestart(const LLSD& notification, const LLSD& response)
@@ -1113,7 +1116,7 @@ bool LLPanelRegionDebugInfo::callbackRestart(const LLSD& notification, const LLS
 	if (option != 0) return false;
 
 	strings_t strings;
-	strings.push_back("120");
+	strings.push_back(notification["payload"]["SECONDS"].asString());
 	LLUUID invoice(LLFloaterRegionInfo::getLastInvoice());
 	sendEstateOwnerMessage(gMessageSystem, "restart", invoice, strings);
 	return false;
diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml
index 449d58aba4843951665a6957689db6898bda6c7a..8ae97f00195ed7300d5d112492e95454bd0c6eea 100755
--- a/indra/newview/skins/default/xui/en/notifications.xml
+++ b/indra/newview/skins/default/xui/en/notifications.xml
@@ -5307,7 +5307,7 @@ Does this group contain Moderate content?
    label="Confirm restart"
    name="ConfirmRestart"
    type="alert">
-Do you really want to restart this region in 2 minutes?
+Do you really want to restart this region in [SECONDS] seconds?
     <tag>confirm</tag>
     <usetemplate
      name="okcancelbuttons"
diff --git a/indra/newview/skins/default/xui/en/panel_region_debug.xml b/indra/newview/skins/default/xui/en/panel_region_debug.xml
index fea5f1b19f87f8ede892d403a1152bfe81fb2154..6065228d55c7eb8ab857878b818e0361be5723db 100755
--- a/indra/newview/skins/default/xui/en/panel_region_debug.xml
+++ b/indra/newview/skins/default/xui/en/panel_region_debug.xml
@@ -178,9 +178,24 @@
      layout="topleft"
      left_pad="155"
      name="restart_btn"
-     tool_tip="Give 2 minute countdown and restart region"
+     tool_tip="Give a countdown and restart region"
      top_delta="0"
-     width="150" />
+     width="100" />
+    <spinner
+     decimal_digits="0"
+     enabled="true"
+     follows="left|top"
+     height="20"
+     increment="1"
+     initial_value="120"
+     layout="topleft"
+     left_pad="0"
+     max_val="1024"
+     min_val="0"
+     name="restart_timer"
+     tool_tip="Seconds before restart"
+     top_delta="0"
+     width="50" />
     <button
      follows="left|top"
      height="20"