diff options
author | nebadon | 2011-12-19 11:51:03 -0700 |
---|---|---|
committer | nebadon | 2011-12-19 11:51:03 -0700 |
commit | 6baee2e10baedd72efc714d74b64e26f70d57132 (patch) | |
tree | 89871b0d02b8d82bb0253c305064f5d9d3517183 /OpenSim/ApplicationPlugins/RemoteController | |
parent | Provide user feedback on execution of "backup" region console command (diff) | |
download | opensim-SC_OLD-6baee2e10baedd72efc714d74b64e26f70d57132.zip opensim-SC_OLD-6baee2e10baedd72efc714d74b64e26f70d57132.tar.gz opensim-SC_OLD-6baee2e10baedd72efc714d74b64e26f70d57132.tar.bz2 opensim-SC_OLD-6baee2e10baedd72efc714d74b64e26f70d57132.tar.xz |
addresses mantis #5827
RAdmin - admin_save_oar fails if noassets parameter missing
thanks Michelle Argus
Diffstat (limited to 'OpenSim/ApplicationPlugins/RemoteController')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 0a262fb..7106e6a 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -1463,7 +1463,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
1463 | options["profile"] = (string)requestData["profile"]; | 1463 | options["profile"] = (string)requestData["profile"]; |
1464 | } | 1464 | } |
1465 | 1465 | ||
1466 | if (requestData["noassets"].ToString() == "true") | 1466 | if ((string)requestData["noassets"] == "true") |
1467 | { | 1467 | { |
1468 | options["noassets"] = (string)requestData["noassets"] ; | 1468 | options["noassets"] = (string)requestData["noassets"] ; |
1469 | } | 1469 | } |