Fix a small bug. Trusted script crossings now work again

mysql-performance
Melanie 2009-11-26 17:16:02 +00:00
parent 41226dc991
commit c6bfecccaa
1 changed files with 1 additions and 1 deletions

View File

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