X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Floader%2Fload_cache-revision.php;h=d15d410c30a41aae86a776ab6d0582f1c6dbbcfa;hb=c9b17a86f4d62b50b8b1fbe6f9d88e6092430526;hp=e71891f83354cb67ccd2b8c3a52da2d8dc133525;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/loader/load_cache-revision.php b/inc/loader/load_cache-revision.php index e71891f833..d15d410c30 100644 --- a/inc/loader/load_cache-revision.php +++ b/inc/loader/load_cache-revision.php @@ -14,10 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,24 +38,24 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} +} // END - if // Next cached table is the revision... -if (($GLOBALS['cache_instance']->loadCacheFile('revision'))) { +if ($GLOBALS['cache_instance']->loadCacheFile('revision')) { // Load revision from cache $GLOBALS['cache_array']['revision'] = $GLOBALS['cache_instance']->getArrayFromCache(); -} elseif ((getOutputMode() != 1)) { +} elseif ((isHtmlOutputMode())) { // Create cache file here $GLOBALS['cache_instance']->init(); // add the new RevInfos in and saves it to the cache - $GLOBALS['cache_instance']->addRow(getArrayFromActualVersion()); + $GLOBALS['cache_instance']->addRow(getArrayFromRepositoryData()); // Close the cache $GLOBALS['cache_instance']->finalize(); // Generate FQFN for old revision file - $FQFN = sprintf("%s/.revision", getConfig('CACHE_PATH')); + $FQFN = sprintf("%s/.revision", getCachePath()); // Is it there? if (isFileReadable($FQFN)) {