diff options
author | andreykproductengine <akleshchev@productengine.com> | 2014-04-23 19:47:19 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2014-04-23 19:47:19 +0300 |
commit | b1cffda8f3ac9ce95525ae926272c0ecbbc5b24e (patch) | |
tree | 4a347b363ef6116fe55ce21be818f5f4d4b20305 /indra/llinventory | |
parent | 331663458fbf0a434701b1bb1dd15901eb1c20fe (diff) |
MAINT-2361 FIXED One and the same user shown in Allowed and in Banned Residents lists
Diffstat (limited to 'indra/llinventory')
-rwxr-xr-x | indra/llinventory/llparcel.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp index 5eb5fb442d..d6bfec5bec 100755 --- a/indra/llinventory/llparcel.cpp +++ b/indra/llinventory/llparcel.cpp @@ -793,8 +793,6 @@ BOOL LLParcel::addToAccessList(const LLUUID& agent_id, S32 time) } } - removeFromBanList(agent_id); - LLAccessEntry new_entry; new_entry.mID = agent_id; new_entry.mTime = time; @@ -838,8 +836,6 @@ BOOL LLParcel::addToBanList(const LLUUID& agent_id, S32 time) } } - removeFromAccessList(agent_id); - LLAccessEntry new_entry; new_entry.mID = agent_id; new_entry.mTime = time; |