aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/database.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/database.php')
-rw-r--r--engine/lib/database.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/lib/database.php b/engine/lib/database.php
index d02427029..973e63e53 100644
--- a/engine/lib/database.php
+++ b/engine/lib/database.php
@@ -19,6 +19,7 @@
*
* @global array $DB_QUERY_CACHE
*/
+global $DB_QUERY_CACHE;
$DB_QUERY_CACHE = array();
/**
@@ -38,6 +39,7 @@ $DB_QUERY_CACHE = array();
*
* @global array $DB_DELAYED_QUERIES
*/
+global $DB_DELAYED_QUERIES;
$DB_DELAYED_QUERIES = array();
/**
@@ -48,6 +50,7 @@ $DB_DELAYED_QUERIES = array();
*
* @global array $dblink
*/
+global $dblink;
$dblink = array();
/**
@@ -57,6 +60,7 @@ $dblink = array();
*
* @global integer $dbcalls
*/
+global $dbcalls;
$dbcalls = 0;
/**