]> git.andy128k.dev Git - ipf.git/commitdiff
fix new session creation
authorAndrey Kutejko <aku@anahoret.com>
Thu, 21 Aug 2014 10:26:16 +0000 (13:26 +0300)
committerAndrey Kutejko <aku@anahoret.com>
Thu, 21 Aug 2014 10:26:16 +0000 (13:26 +0300)
ipf/session/app.php

index 31e5d504a35089eb9a73943a72e877588f77a01a..09b9f26b1ab71fe130ed04c08752200ea4f19798 100644 (file)
@@ -44,7 +44,7 @@ abstract class Session
     public static function create()
     {
         $backend = self::$backends[0];
-        return new $backend;
+        return new $backend(null, array());
     }