aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
diff options
context:
space:
mode:
authorDiva Canto2011-05-14 12:57:34 -0700
committerDiva Canto2011-05-14 12:57:34 -0700
commit082a9ecd31d953fd415b515df4f67078a786f8d5 (patch)
tree0ea0bf15d6a46120b69803630141141eb477c995 /OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
parentStop spamming Nebadon's console when assets aren't found in the asset server. (diff)
parentrefactor: improve PrimLimitsModule to call ILandObject.GetSimulatorMaxPrimCou... (diff)
downloadopensim-SC_OLD-082a9ecd31d953fd415b515df4f67078a786f8d5.zip
opensim-SC_OLD-082a9ecd31d953fd415b515df4f67078a786f8d5.tar.gz
opensim-SC_OLD-082a9ecd31d953fd415b515df4f67078a786f8d5.tar.bz2
opensim-SC_OLD-082a9ecd31d953fd415b515df4f67078a786f8d5.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs')
-rw-r--r--OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs b/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
index cdab49e..0da9fc1 100644
--- a/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
+++ b/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs
@@ -30,6 +30,7 @@ using System.Collections;
30using System.IO; 30using System.IO;
31using System.Net; 31using System.Net;
32using System.Reflection; 32using System.Reflection;
33using System.Security;
33using System.Text; 34using System.Text;
34using log4net; 35using log4net;
35using Nini.Config; 36using Nini.Config;
@@ -143,7 +144,7 @@ namespace OpenSim.Server.Handlers.Grid
143 sb.Append("<gridinfo>\n"); 144 sb.Append("<gridinfo>\n");
144 foreach (string k in _info.Keys) 145 foreach (string k in _info.Keys)
145 { 146 {
146 sb.AppendFormat("<{0}>{1}</{0}>\n", k, _info[k]); 147 sb.AppendFormat("<{0}>{1}</{0}>\n", k, SecurityElement.Escape(_info[k].ToString()));
147 } 148 }
148 sb.Append("</gridinfo>\n"); 149 sb.Append("</gridinfo>\n");
149 150