구 버전용 XmlQueryParser 제거.

This commit is contained in:
bnu 2013-11-30 19:15:48 +09:00
parent 41ff8ace3b
commit 035fd8fa3b
5 changed files with 172 additions and 906 deletions

View file

@ -604,9 +604,9 @@ class DB
}
// 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.150.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.class.php'))
{
require_once(_XE_PATH_ . 'classes/xml/XmlQueryParser.150.class.php');
require_once(_XE_PATH_ . 'classes/xml/XmlQueryParser.class.php');
$oParser = new XmlQueryParser();
$oParser->parse($query_id, $xml_file, $cache_file);
}