summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabriel <none@none>2010-07-05 16:29:30 +0100
committergabriel <none@none>2010-07-05 16:29:30 +0100
commit86da02f7d2f39705320dfea5c0f1b528ade7cad7 (patch)
tree9ce0e0ee91c930b28d8b8da04b5f18b31f3be842
parentc5d3d29ef4471813661e777651859c6216a227f2 (diff)
=EXT-4655 fixed
-rw-r--r--indra/newview/llfloaterscriptlimits.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llfloaterscriptlimits.cpp b/indra/newview/llfloaterscriptlimits.cpp
index 4792d761d8..0a5499b166 100644
--- a/indra/newview/llfloaterscriptlimits.cpp
+++ b/indra/newview/llfloaterscriptlimits.cpp
@@ -557,8 +557,6 @@ BOOL LLPanelScriptLimitsRegionMemory::getLandScriptResources()
void LLPanelScriptLimitsRegionMemory::processParcelInfo(const LLParcelData& parcel_data)
{
- mParcelId = parcel_data.parcel_id;
-
if(!getLandScriptResources())
{
std::string msg_error = LLTrans::getString("ScriptLimitsRequestError");
@@ -580,6 +578,7 @@ void LLPanelScriptLimitsRegionMemory::setParcelID(const LLUUID& parcel_id)
LLRemoteParcelInfoProcessor::getInstance()->removeObserver(mParcelId, this);
mParcelId.setNull();
}
+ mParcelId = parcel_id;
LLRemoteParcelInfoProcessor::getInstance()->addObserver(parcel_id, this);
LLRemoteParcelInfoProcessor::getInstance()->sendParcelInfoRequest(parcel_id);
}