X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fextensions.php;h=abad4d77ae24e30a68f3b0ad22cfe66616d0ced0;hp=6232456238c12dd25fda975e9615064d0daa98b3;hb=9fe3f47d516aeee72d4e64749ac4264b458fd178;hpb=3f5269bfc3bc519223716d1ee2039ffc796931fb diff --git a/inc/extensions.php b/inc/extensions.php index 6232456238..abad4d77ae 100644 --- a/inc/extensions.php +++ b/inc/extensions.php @@ -295,25 +295,23 @@ function EXT_IS_ACTIVE ($ext_name, $ignore_admin = false, $ignore_cache = false) // Extension's file name will also be checked $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name); if ((!file_exists($file)) && (!is_readable($file))) return false; - //* DEBUG: */ echo "*".$ext_name."*
"; + //* DEBUG: */ echo "*".$ext_name."(".count($cacheArray).")
"; // Failed is the default $ret = false; - if ((!empty($cacheArray['extensions']['ext_active'][$ext_name])) && (!$ignore_cache)) - { + if ((!empty($cacheArray['extensions']['ext_active'][$ext_name])) && (!$ignore_cache)) { // Load from cache + //* DEBUG: */ echo "CACHE!
\n"; $active = $cacheArray['extensions']['ext_active'][$ext_name]; // Count cache hits if (isset($_CONFIG['cache_hits'])) $_CONFIG['cache_hits']++; - } - else - { + } else { + //* DEBUG: */ echo "DB!
\n"; // Load from database $result = SQL_QUERY_ESC("SELECT ext_active FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1", array($ext_name), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 0) - { + if (SQL_NUMROWS($result) == 0) { // Extension was not found! return false; }