diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
index e20b487cc6..08f3dc7e9e 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -2340,10 +2340,12 @@ namespace OpenSim.ApplicationPlugins.RemoteController
         ///       UUID of the region
         /// - region_name
         ///       region name-        ///
- profile
+        /// - profile
         ///       profile url///
- noassets
         ///       true if no assets should be saved+        ///
- perm
+        ///       C and/or T/// 
         ///
         ///
region_uuidtakes precedence over
@@ -2418,6 +2420,11 @@ namespace OpenSim.ApplicationPlugins.RemoteController
                     options["noassets"] = (string)requestData["noassets"] ;
                 }
 
+                if (requestData.Contains("perm"))
+                {
+                    options["checkPermissions"] = (string)requestData["perm"];
+                }
+
                 IRegionArchiverModule archiver = scene.RequestModuleInterface();
 
                 if (archiver != null)