From 5d6952a3d5fc223b9984231fdbe990d6469c0326 Mon Sep 17 00:00:00 2001 From: ngleader Date: Fri, 26 Nov 2010 08:53:52 +0000 Subject: [PATCH] =?UTF-8?q?r7890=20=EC=B6=94=EA=B0=80=20XMLQuery=20Cache?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=B2=B4=ED=81=AC=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7923 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/db/DB.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/db/DB.class.php b/classes/db/DB.class.php index 8b7c03d13..3bef04f72 100644 --- a/classes/db/DB.class.php +++ b/classes/db/DB.class.php @@ -286,7 +286,7 @@ 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')) { + 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'); $oParser = new XmlQueryParser(); $oParser->parse($query_id, $xml_file, $cache_file);