X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fwrapper-functions.php;h=48db9bbc05b706263abad490660594bfce5b9fb4;hp=2127a208e7e62d1e6b70ade8346aa97d1f12fdd9;hb=be81324dfff59fa3aeac6844d10afe8c15286dff;hpb=e45e218c4f629ec63f0788cab231bfc88b3fa46e diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 2127a208e7..48db9bbc05 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -716,7 +716,10 @@ function isExtensionInstalledAndNewer ($ext_name, $version) { // Is an cache entry found? if (!isset($GLOBALS['ext_installed_newer'][$ext_name][$version])) { $GLOBALS['ext_installed_newer'][$ext_name][$version] = ((isExtensionInstalled($ext_name)) && (getExtensionVersion($ext_name) >= $version)); - } // END - if + } else { + // Cache hits should be incremented twice + incrementStatsEntry('cache_hits', 2); + } // Return it //* DEBUG: */ print __FUNCTION__.':'.$ext_name.'=>'.$version.':'.intval($GLOBALS['ext_installed_newer'][$ext_name][$version]).'
'; @@ -728,7 +731,10 @@ function isExtensionInstalledAndOlder ($ext_name, $version) { // Is an cache entry found? if (!isset($GLOBALS['ext_installed_older'][$ext_name][$version])) { $GLOBALS['ext_installed_older'][$ext_name][$version] = ((isExtensionInstalled($ext_name)) && (isExtensionOlder($ext_name, $version))); - } // END - if + } else { + // Cache hits should be incremented twice + incrementStatsEntry('cache_hits', 2); + } // Return it //* DEBUG: */ print __FUNCTION__.':'.$ext_name.'<'.$version.':'.intval($GLOBALS['ext_installed_older'][$ext_name][$version]).'
';