diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/ViewerSupport/DynamicFloaterModule.cs | 13 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/ViewerSupport/DynamicMenuModule.cs | 7 |
2 files changed, 15 insertions, 5 deletions
diff --git a/OpenSim/Region/OptionalModules/ViewerSupport/DynamicFloaterModule.cs b/OpenSim/Region/OptionalModules/ViewerSupport/DynamicFloaterModule.cs index 7919fef..4524a05 100644 --- a/OpenSim/Region/OptionalModules/ViewerSupport/DynamicFloaterModule.cs +++ b/OpenSim/Region/OptionalModules/ViewerSupport/DynamicFloaterModule.cs | |||
@@ -125,10 +125,17 @@ namespace OpenSim.Region.OptionalModules.ViewerSupport | |||
125 | m_floaters[agentID].Add(dialogData.Channel, dialogData); | 125 | m_floaters[agentID].Add(dialogData.Channel, dialogData); |
126 | 126 | ||
127 | string xml; | 127 | string xml; |
128 | using (FileStream fs = File.Open(dialogData.XmlName + ".xml", FileMode.Open)) | 128 | if (dialogData.XmlText != null && dialogData.XmlText != String.Empty) |
129 | { | 129 | { |
130 | using (StreamReader sr = new StreamReader(fs)) | 130 | xml = dialogData.XmlText; |
131 | xml = sr.ReadToEnd().Replace("\n", ""); | 131 | } |
132 | else | ||
133 | { | ||
134 | using (FileStream fs = File.Open(dialogData.XmlName + ".xml", FileMode.Open)) | ||
135 | { | ||
136 | using (StreamReader sr = new StreamReader(fs)) | ||
137 | xml = sr.ReadToEnd().Replace("\n", ""); | ||
138 | } | ||
132 | } | 139 | } |
133 | 140 | ||
134 | List<string> xparts = new List<string>(); | 141 | List<string> xparts = new List<string>(); |
diff --git a/OpenSim/Region/OptionalModules/ViewerSupport/DynamicMenuModule.cs b/OpenSim/Region/OptionalModules/ViewerSupport/DynamicMenuModule.cs index 917911f..c68fe99 100644 --- a/OpenSim/Region/OptionalModules/ViewerSupport/DynamicMenuModule.cs +++ b/OpenSim/Region/OptionalModules/ViewerSupport/DynamicMenuModule.cs | |||
@@ -110,8 +110,11 @@ namespace OpenSim.Region.OptionalModules.ViewerSupport | |||
110 | { | 110 | { |
111 | foreach (MenuItemData d in m_menuItems[UUID.Zero]) | 111 | foreach (MenuItemData d in m_menuItems[UUID.Zero]) |
112 | { | 112 | { |
113 | if (d.Mode == UserMode.God && (!m_scene.Permissions.IsGod(agentID))) | 113 | if (!m_scene.Permissions.IsGod(agentID)) |
114 | continue; | 114 | { |
115 | if (d.Mode == UserMode.RegionManager && (!m_scene.Permissions.IsAdministrator(agentID))) | ||
116 | continue; | ||
117 | } | ||
115 | 118 | ||
116 | OSDMap loc = null; | 119 | OSDMap loc = null; |
117 | switch (d.Location) | 120 | switch (d.Location) |