X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Floader%2Fload-;h=a01d875336dca2acd4962f4fadb976ebdaf70956;hb=2a9d20991983e7c4feb53e7c80e35c874ae5ddac;hp=d1c1fc375e42e97b348702cf1f3097ceda8f9db9;hpb=2e715eb7f3f8ca8d259aacb4cbbddde7d9d18e01;p=mailer.git diff --git a/inc/loader/load- b/inc/loader/load- index d1c1fc375e..a01d875336 100644 --- a/inc/loader/load- +++ b/inc/loader/load- @@ -4,7 +4,7 @@ * =================== Last change: 10/24/2009 * * * * -------------------------------------------------------------------- * - * File : load_cache- * + * File : load- * * -------------------------------------------------------------------- * * Short description : Load more cache files * * -------------------------------------------------------------------- * @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -38,21 +38,21 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} // END - if - -// Use this code if you don't want to run this cache loader on installation phase -//if (isInstallationPhase()) return; +} elseif (isInstallationPhase()) { + // Use this code if you don't want to run this cache loader on installation phase + return; +} // Let's start with the admins table... if (($GLOBALS['cache_instance']->loadCacheFile('foo')) && ($GLOBALS['cache_instance']->extensionVersionMatches('foo'))) { // Load cache $GLOBALS['cache_array']['foo'] = $GLOBALS['cache_instance']->getArrayFromCache(); -} elseif (isHtmlMode()) { +} elseif (isHtmlOutputMode()) { // Create cache file $GLOBALS['cache_instance']->init(); // Load every data from DB to cache file - $add = runFilterChain('sql_admin_extra_data'); + //$add = runFilterChain('sql_admin_extra_data'); // Query the database about this $result = SQL_QUERY('SELECT * FROM `{?_MYSQL_PREFIX?}_foos` ORDER BY `some_bar` ASC', __FILE__, __LINE__);