Issue 366 - Issue about update from 1.4.5.x to 1.5.0.x using easyinstall

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9591 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ucorina 2011-10-11 14:49:44 +00:00
parent fb4b591579
commit af872e66ec
3 changed files with 607 additions and 65 deletions

View file

@ -388,8 +388,8 @@
else $cache_time = -1;
// if there is no cache file or is not new, find original xml query file and parse it
if($cache_time < filemtime($xml_file) || $cache_time < filemtime(_XE_PATH_.'classes/db/DB.class.php') || $cache_time < filemtime(_XE_PATH_.'classes/xml/XmlQueryParser.class.php')) {
require_once(_XE_PATH_.'classes/xml/XmlQueryParser.class.php');
if($cache_time < filemtime($xml_file) || $cache_time < filemtime(_XE_PATH_.'classes/db/DB.class.php') || $cache_time < filemtime(_XE_PATH_.'classes/xml/XmlQueryParser.150.class.php')) {
require_once(_XE_PATH_.'classes/xml/XmlQueryParser.150.class.php');
$oParser = new XmlQueryParser();
$oParser->parse($query_id, $xml_file, $cache_file);
}