mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
Merge branch 'master' into careminster
Conflicts: OpenSim/Region/Application/OpenSimBase.cs OpenSim/Region/Framework/Scenes/Scene.cs
This commit is contained in:
@@ -73,17 +73,19 @@ namespace OpenSim.Server.Handlers.Login
|
||||
|
||||
if (requestData != null)
|
||||
{
|
||||
foreach (string key in requestData.Keys)
|
||||
{
|
||||
object value = requestData[key];
|
||||
Console.WriteLine("{0}:{1}", key, value);
|
||||
if (value is ArrayList)
|
||||
{
|
||||
ICollection col = value as ICollection;
|
||||
foreach (object item in col)
|
||||
Console.WriteLine(" {0}", item);
|
||||
}
|
||||
}
|
||||
// Debug code to show exactly what login parameters the viewer is sending us.
|
||||
// TODO: Extract into a method that can be generally applied if one doesn't already exist.
|
||||
// foreach (string key in requestData.Keys)
|
||||
// {
|
||||
// object value = requestData[key];
|
||||
// Console.WriteLine("{0}:{1}", key, value);
|
||||
// if (value is ArrayList)
|
||||
// {
|
||||
// ICollection col = value as ICollection;
|
||||
// foreach (object item in col)
|
||||
// Console.WriteLine(" {0}", item);
|
||||
// }
|
||||
// }
|
||||
|
||||
if (requestData.ContainsKey("first") && requestData["first"] != null &&
|
||||
requestData.ContainsKey("last") && requestData["last"] != null && (
|
||||
|
||||
Reference in New Issue
Block a user