From 3d8c7649a8bb37b3aa36f28e02a05896428bc8ad Mon Sep 17 00:00:00 2001 From: Erik Amaru Ortiz Date: Wed, 25 Sep 2013 10:14:39 -0400 Subject: [PATCH] PHP Ver. 3.5 compatibility changes --- gulliver/core/Session/PmSessionHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/core/Session/PmSessionHandler.php b/gulliver/core/Session/PmSessionHandler.php index 8480f7a68..bf24ed12f 100644 --- a/gulliver/core/Session/PmSessionHandler.php +++ b/gulliver/core/Session/PmSessionHandler.php @@ -140,7 +140,7 @@ class PmSessionHandler //implements SessionHandlerInterface // remaining references to it are deleted--you do this by assigning NULL to the variable // that holds the object. If you don't do this explicitly, PHP will automatically // close the connection when your script ends. - $this->db = null; + //$this->db = null; return true; }