From 0e12cf6c494de65c0c0ee452c268ae86701c4ff0 Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Tue, 14 Apr 2009 00:00:13 +0100 Subject: [PATCH] PHP4 compatibility changes. --- plugins/db_store.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/db_store.php b/plugins/db_store.php index d92d724..0262343 100644 --- a/plugins/db_store.php +++ b/plugins/db_store.php @@ -18,7 +18,7 @@ function db_store($config = null) { if ($this->db) { if (mysql_select_db($config['database']['database'], $this->db)) { $this->connected = true; - self::setup(); + $this->setup(); } else { user_error("Could not connect to database"); }