X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Floader%2Fload-points_data.php;h=90fa77f52e29a4d4a67394886e0165b48115c903;hb=678f314de00d41c3990fc49742545cd2e78dd3cc;hp=744b616ba7103ccf18e5bdf7894e7704b7511136;hpb=0a37fc5afcd828646d4e62e68fea07c3d2c54a87;p=mailer.git diff --git a/inc/loader/load-points_data.php b/inc/loader/load-points_data.php index 744b616ba7..90fa77f52e 100644 --- a/inc/loader/load-points_data.php +++ b/inc/loader/load-points_data.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * 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 * @@ -48,13 +48,22 @@ if (($GLOBALS['cache_instance']->loadCacheFile('points_data')) && ($GLOBALS['cac // Load cache $GLOBALS['cache_array']['points_data'] = $GLOBALS['cache_instance']->getArrayFromCache(); + // Is there cache? + if (!isset($GLOBALS['cache_array']['points_data']['subject'])) { + // Try to remove the cache file + $GLOBALS['cache_instance']->removeCacheFile(); + + // Not found, so better abort here + reportBug(__FILE__, __LINE__, 'points_data has been generated, but does not contain "subject". Please try to reload to fix this.'); + } // END - if + // Init temporary array $pointsData = array(); // Rewrite all to subject - foreach ($GLOBALS['cache_array']['points_data']['subject'] as $key=>$subject) { + foreach ($GLOBALS['cache_array']['points_data']['subject'] as $key => $subject) { // Re-add key with subject - foreach ($GLOBALS['cache_array']['points_data'] as $key2=>$array) { + foreach ($GLOBALS['cache_array']['points_data'] as $key2 => $array) { // Is key2 not 'subject'? if ($key2 != 'subject') { // Then Add it @@ -66,7 +75,7 @@ if (($GLOBALS['cache_instance']->loadCacheFile('points_data')) && ($GLOBALS['cac // Set the array back and remove temporary $GLOBALS['cache_array']['points_data'] = $pointsData; unset($pointsData); -} elseif (isHtmlOutputMode()) { +} elseif ((isHtmlOutputMode()) && (isExtensionInstalledAndNewer('sql_patches', '0.8.6'))) { // Create cache file $GLOBALS['cache_instance']->init();