aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorUbitUmarov2019-08-17 20:41:49 +0100
committerUbitUmarov2019-08-17 20:41:49 +0100
commiteb9cf78e6b2690f70dd6a05dd639ab875fa90e7c (patch)
treeb4509e132289943ecd072d65797e5aa8dbc06107 /OpenSim
parentminor update to osslEnable.ini (diff)
downloadopensim-SC-eb9cf78e6b2690f70dd6a05dd639ab875fa90e7c.zip
opensim-SC-eb9cf78e6b2690f70dd6a05dd639ab875fa90e7c.tar.gz
opensim-SC-eb9cf78e6b2690f70dd6a05dd639ab875fa90e7c.tar.bz2
opensim-SC-eb9cf78e6b2690f70dd6a05dd639ab875fa90e7c.tar.xz
EstateAccess: add some ban fields to fill one day
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs b/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs
index cd6cdef..c3a48d9 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs
@@ -203,6 +203,9 @@ namespace OpenSim.Region.ClientStack.Linden
203 if (id == UUID.Zero) 203 if (id == UUID.Zero)
204 continue; 204 continue;
205 LLSDxmlEncode.AddElem("id", id, sb); 205 LLSDxmlEncode.AddElem("id", id, sb);
206 LLSDxmlEncode.AddElem("last_login_date", "0000-00-00 00:00:00", sb); // We will not have this
207 LLSDxmlEncode.AddElem("ban_date", "0000-00-00 00:00:00", sb); // We will have this
208 LLSDxmlEncode.AddElem("banning_id", UUID.Zero, sb); // we will have this one day
206 } 209 }
207 LLSDxmlEncode.AddEndMap(sb); 210 LLSDxmlEncode.AddEndMap(sb);
208 } 211 }