From: Jan Schneider Date: Fri, 25 Sep 2009 14:11:52 +0000 (+0200) Subject: We might have a connection already, use the parent method. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7a0bfb5808d3d13c53920cbb2c820f3af8e901fb;p=horde.git We might have a connection already, use the parent method. --- diff --git a/framework/SessionHandler/lib/Horde/SessionHandler/Mysql.php b/framework/SessionHandler/lib/Horde/SessionHandler/Mysql.php index 503c789c7..2f6423202 100644 --- a/framework/SessionHandler/lib/Horde/SessionHandler/Mysql.php +++ b/framework/SessionHandler/lib/Horde/SessionHandler/Mysql.php @@ -256,7 +256,7 @@ class Horde_SessionHandler_Mysql extends Horde_SessionHandler public function getSessionIDs() { /* Make sure we have a valid database connection. */ - $this->_open(); + $this->open(); $query = sprintf('SELECT session_id FROM %s' . ' WHERE session_lastmodified >= %s', diff --git a/framework/SessionHandler/lib/Horde/SessionHandler/Pgsql.php b/framework/SessionHandler/lib/Horde/SessionHandler/Pgsql.php index 8a9b4e1d0..1d02fffa5 100644 --- a/framework/SessionHandler/lib/Horde/SessionHandler/Pgsql.php +++ b/framework/SessionHandler/lib/Horde/SessionHandler/Pgsql.php @@ -242,7 +242,7 @@ class Horde_SessionHandler_Pgsql extends Horde_SessionHandler public function getSessionIDs() { /* Make sure we have a valid database connection. */ - $this->_open(); + $this->open(); /* Build the SQL query. */ $query = sprintf('SELECT session_id FROM %s ' .