Fix a small bug. Trusted script crossings now work again

This commit is contained in:
Melanie
2009-11-26 17:16:02 +00:00
parent 41226dc991
commit c6bfecccaa

View File

@@ -1452,7 +1452,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine
mappath = Path.Combine(mappath, mapE.GetAttribute("Filename"));
FileStream mfs = File.Create(mappath);
StreamWriter msw = new StreamWriter(sfs);
StreamWriter msw = new StreamWriter(mfs);
msw.Write(mapE.InnerText);