aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs')
-rw-r--r--OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
index 437d150..202d199 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -1493,6 +1493,8 @@ namespace OpenSim.ApplicationPlugins.RemoteController
1493 /// <description>profile url</description></item> 1493 /// <description>profile url</description></item>
1494 /// <item><term>noassets</term> 1494 /// <item><term>noassets</term>
1495 /// <description>true if no assets should be saved</description></item> 1495 /// <description>true if no assets should be saved</description></item>
1496 /// <item><term>all</term>
1497 /// <description>true to save all the regions in the simulator</description></item>
1496 /// <item><term>perm</term> 1498 /// <item><term>perm</term>
1497 /// <description>C and/or T</description></item> 1499 /// <description>C and/or T</description></item>
1498 /// </list> 1500 /// </list>
@@ -1549,6 +1551,11 @@ namespace OpenSim.ApplicationPlugins.RemoteController
1549 options["checkPermissions"] = (string)requestData["perm"]; 1551 options["checkPermissions"] = (string)requestData["perm"];
1550 } 1552 }
1551 1553
1554 if ((string)requestData["all"] == "true")
1555 {
1556 options["all"] = (string)requestData["all"];
1557 }
1558
1552 IRegionArchiverModule archiver = scene.RequestModuleInterface<IRegionArchiverModule>(); 1559 IRegionArchiverModule archiver = scene.RequestModuleInterface<IRegionArchiverModule>();
1553 1560
1554 if (archiver != null) 1561 if (archiver != null)