Преглед изворни кода

- 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 var _started = untyped __call__("isset", __var__("_SESSION"));
-	private static function start() {
+	public static function start() {
 		if(_started) return;
 		if(_started) return;
 		_started = true;
 		_started = true;
 		untyped __call__("session_start");
 		untyped __call__("session_start");