X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Floader%2Fload-imprint.php;h=e8303d343876a2944f1aa7e097ff2b891cae5192;hb=33a76a20bc94ffe95e9f13906eb7dc5cf354948d;hp=eb1d818d81a58189caca0f8382d0c7823615fdf9;hpb=39651508549dec13febf6b8dc11079bbc07b68e3;p=mailer.git diff --git a/inc/loader/load-imprint.php b/inc/loader/load-imprint.php index eb1d818d81..e8303d3438 100644 --- a/inc/loader/load-imprint.php +++ b/inc/loader/load-imprint.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,8 +38,9 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} elseif (isInstallationPhase()) { +} elseif (isInstaller()) { // Do not run in installation phase + //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.'); return FALSE; } elseif (!isExtensionInstalled('imprint')) { // Do not cache if not installed! @@ -50,22 +51,19 @@ if (!defined('__SECURITY')) { if (($GLOBALS['cache_instance']->loadCacheFile('imprint')) && ($GLOBALS['cache_instance']->extensionVersionMatches('imprint'))) { // Load cache $GLOBALS['cache_array']['imprint'] = $GLOBALS['cache_instance']->getArrayFromCache(); -} elseif ((isHtmlOutputMode()) || (isRawOutputMode())) { +} elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) { // Create cache file $GLOBALS['cache_instance']->init(); - // Load every data from DB to cache file - $add = runFilterChain('sql_admin_extra_data'); - // Query the database about this - $result = SQL_QUERY('SELECT * FROM `{?_MYSQL_PREFIX?}_imprint_data` ORDER BY `imprint_id` ASC', __FILE__, __LINE__); - while ($row = SQL_FETCHARRAY($result)) { + $result = sqlQuery('SELECT * FROM `{?_MYSQL_PREFIX?}_imprint_data` ORDER BY `imprint_id` ASC', __FILE__, __LINE__); + while ($row = sqlFetchArray($result)) { // Save row $GLOBALS['cache_instance']->addRow($row); } // END - while // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); // Close cache $GLOBALS['cache_instance']->storeExtensionVersion('imprint');