return $GLOBALS[__FUNCTION__];
}
-// "Getter" for internal_stats
-function getInternalStats () {
- // Is there cache?
- if (!isset($GLOBALS[__FUNCTION__])) {
- // Determine it
- $GLOBALS[__FUNCTION__] = getConfig('internal_stats');
- } // END - if
-
- // Return cache
- return $GLOBALS[__FUNCTION__];
-}
-
// "Getter" for display_debug_sqls
function getDisplayDebugSqls () {
// Is there cache?
return $GLOBALS[__FUNCTION__];
}
+// "Getter" for internal_stats
+function getInternalStats () {
+ // Is there cache?
+ if (!isset($GLOBALS[__FUNCTION__])) {
+ // Determine it
+ $GLOBALS[__FUNCTION__] = getConfig('internal_stats');
+ } // END - if
+
+ // Return cache
+ return $GLOBALS[__FUNCTION__];
+}
+
// Checks whether stats are enabled
function ifInternalStatsEnabled () {
// Is there cache?
if (!isset($GLOBALS[__FUNCTION__])) {
- // Then determine it
- $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('other', '0.2.6')) && (getInternalStats() == 'Y'));
+ // Then determine it, do not add isExtensionInstalledAndNewer() here as it breaks very first SQL query
+ $GLOBALS[__FUNCTION__] = (getInternalStats() == 'Y');
} // END - if
// Return cached value