Nicolas Cannasse 19 سال پیش
والد
کامیت
5a4c9da76e
2فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 1 1
      doc/MakeRelease.bat
  2. 2 2
      std/mtwin/web/Request.hx

+ 1 - 1
doc/MakeRelease.bat

@@ -18,7 +18,7 @@ cd ..
 
 rm -rf CVS .cvsignore */CVS */.cvsignore */*/CVS */*/.cvsignore */*/*/CVS */*/*/.cvsignore
 rm -rf all.n all.js all.swf *.xml tools/haxedoc.n tools/index.html tools/content tools/haxedoc.exe
-rm -rf mt
+rm -rf mt mtwin
 
 cd ..\..\..\..\neko\bin
 cp gc.dll neko.dll neko.exe nekoc.exe nekotools.exe *.ndll ../../haxe/doc/haxe-release

+ 2 - 2
std/mtwin/web/Request.hx

@@ -9,7 +9,7 @@ class Request {
 	public function new() {
 		pathInfoParts = Web.getURI().split( "/" );
 		pathInfoParts.shift();
-		setParams( Web.getParams() );
+		params = Web.getParams();
 	}
 
 	public function getPathInfoPart ( level ) : String {
@@ -35,7 +35,7 @@ class Request {
 			for( k in keys ){
 				Reflect.setField( ret, k, params.get(k) );
 			}
-		}		
+		}
 		return ret;
 	}