aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterregioninfo.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:13 -0500
committerJacek Antonelli2008-08-15 23:45:13 -0500
commitc206147ceffd6836bf0f6fe50d0ae4de77c7dcba (patch)
treed8c59df84d01578baea97fb84899a547218f2c8d /linden/indra/newview/llfloaterregioninfo.cpp
parentSecond Life viewer sources 1.18.4.0-RC (diff)
downloadmeta-impy-c206147ceffd6836bf0f6fe50d0ae4de77c7dcba.zip
meta-impy-c206147ceffd6836bf0f6fe50d0ae4de77c7dcba.tar.gz
meta-impy-c206147ceffd6836bf0f6fe50d0ae4de77c7dcba.tar.bz2
meta-impy-c206147ceffd6836bf0f6fe50d0ae4de77c7dcba.tar.xz
Second Life viewer sources 1.18.4.1-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterregioninfo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llfloaterregioninfo.cpp b/linden/indra/newview/llfloaterregioninfo.cpp
index 5833c2f..20f3192 100644
--- a/linden/indra/newview/llfloaterregioninfo.cpp
+++ b/linden/indra/newview/llfloaterregioninfo.cpp
@@ -716,10 +716,11 @@ BOOL LLPanelRegionGeneralInfo::sendUpdate()
716 body["allow_land_resell"] = childGetValue("allow_land_resell_check"); 716 body["allow_land_resell"] = childGetValue("allow_land_resell_check");
717 body["agent_limit"] = childGetValue("agent_limit_spin"); 717 body["agent_limit"] = childGetValue("agent_limit_spin");
718 body["prim_bonus"] = childGetValue("object_bonus_spin"); 718 body["prim_bonus"] = childGetValue("object_bonus_spin");
719 body["sim_access"] = childGetValue("access_combo"); 719 body["sim_access"] = LLViewerRegion::stringToAccess(childGetValue("access_combo").asString().c_str());
720 body["restrict_pushobject"] = childGetValue("restrict_pushobject"); 720 body["restrict_pushobject"] = childGetValue("restrict_pushobject");
721 body["allow_parcel_changes"] = childGetValue("allow_parcel_changes_check"); 721 body["allow_parcel_changes"] = childGetValue("allow_parcel_changes_check");
722 body["block_parcel_search"] = childGetValue("block_parcel_search_check"); 722 body["block_parcel_search"] = childGetValue("block_parcel_search_check");
723
723 LLHTTPClient::post(url, body, new LLHTTPClient::Responder()); 724 LLHTTPClient::post(url, body, new LLHTTPClient::Responder());
724 } 725 }
725 else 726 else