浏览代码

- 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");