소스 검색

- php.Session can now be explicitely started

Franco Ponticelli 16 년 전
부모
커밋
42385515d2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/php/Session.hx

+ 1 - 1
std/php/Session.hx

@@ -116,7 +116,7 @@ class Session {
 	}
 	
 	private static var _started = untyped __call__("isset", __var__("_SESSION"));
-	private static function start() {
+	public static function start() {
 		if(_started) return;
 		_started = true;
 		untyped __call__("session_start");