X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fdb%2Flib-mysql3.php;h=3d7f11ca3e9f97e5194904cc4360ee904a6f5a59;hp=c2d781c655672cef838422009c56b92c9803410e;hb=f9a9c09e1ae257449bfd98f8854e321efba1dc3c;hpb=505941fffb410fe82191d86e54f418f601f2f72f diff --git a/inc/db/lib-mysql3.php b/inc/db/lib-mysql3.php index c2d781c655..3d7f11ca3e 100644 --- a/inc/db/lib-mysql3.php +++ b/inc/db/lib-mysql3.php @@ -64,7 +64,7 @@ Query string:
$_CONFIG['db_last_query'] = $sql_string; // Count this query - if (!isset($_CONFIG['sql_count'])) $_CONFIG['sql_count'] = 0; + if (getConfig('sql_count') == null) $_CONFIG['sql_count'] = 0; $_CONFIG['sql_count']++; // Debug output @@ -85,7 +85,7 @@ Query string:
} // END - if // Count DB hits - if (!isset($_CONFIG['db_hits_run'])) { + if (getConfig('db_hits_run') == null) { // Count in dummy variable $_CONFIG['db_hits_run'] = 1; } else { @@ -199,13 +199,13 @@ function SQL_CLOSE(&$link, $F, $L) { } // END - if // Do we need to update cache/db counter? - //* DEBUG: */ echo "DB=".$_CONFIG['db_hits'].",CACHE=".$_CONFIG['cache_hits']."
\n"; - if ((GET_EXT_VERSION("cache") >= "0.0.7") && (isset($_CONFIG['db_hits'])) && (isset($_CONFIG['cache_hits'])) && (is_object($cacheInstance))) { + //* DEBUG: */ echo "DB=".getConfig('db_hits').",CACHE=".getConfig('cache_hits')."
\n"; + if ((GET_EXT_VERSION("cache") >= "0.0.7") && (getConfig('db_hits') > 0) && (getConfig('cache_hits') > 0) && (is_object($cacheInstance))) { // Add new hits - $_CONFIG['db_hits'] += $_CONFIG['db_hits_run']; + $_CONFIG['db_hits'] += getConfig('db_hits_run'); // Update counter for db/cache - UPDATE_CONFIG(array("db_hits", "cache_hits"), array(bigintval($_CONFIG['db_hits']), bigintval($_CONFIG['cache_hits']))); + UPDATE_CONFIG(array("db_hits", "cache_hits"), array(bigintval(getConfig('db_hits')), bigintval(getConfig('cache_hits')))); } // END - if // Close database link and forget the link