summaryrefslogtreecommitdiffstats
path: root/etc/inc/config.inc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-11-06 22:33:15 -0500
committerScott Ullrich <sullrich@pfsense.org>2009-11-06 22:33:15 -0500
commit093bcebcd38818d7f72f09e622f3412ddecc3c97 (patch)
tree15a5e2ea660b5cbf1d4fdabf3c4fda7f2c594b95 /etc/inc/config.inc
parent26433cb8424871912ef94213976205cd16d7831c (diff)
downloadpfsense-093bcebcd38818d7f72f09e622f3412ddecc3c97.zip
pfsense-093bcebcd38818d7f72f09e622f3412ddecc3c97.tar.gz
Move newer xmlreader code to xmlreader.inc. Restore old xmlparse code to xmlparse.inc. Default to the older xmlparse.inc but add a flag check if /cf/conf/use_xmlreader is present the newer code will be included instead until the remaining bugs can be resolved with it (see rcs for many).
Diffstat (limited to 'etc/inc/config.inc')
-rw-r--r--etc/inc/config.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc
index 0312fd3..ace1cc7 100644
--- a/etc/inc/config.inc
+++ b/etc/inc/config.inc
@@ -66,7 +66,10 @@ require_once("notices.inc");
if($g['booting']) echo ".";
require_once("util.inc");
if($g['booting']) echo ".";
-require_once("xmlparse.inc");
+if(file_exists("/cf/conf/use_xmlreader"))
+ require_once("xmlreader.inc");
+else
+ require_once("xmlparse.inc");
if($g['booting']) echo ".";
require_once("crypt.inc");
OpenPOWER on IntegriCloud