diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2004-12-12 20:05:38 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2004-12-12 20:05:38 +0000 |
commit | a7f908dbec43e9764b084ddd8c066f0de8ecc28a (patch) | |
tree | a5ab69fe0683e358e40d382a6d975f5f01119420 /etc | |
parent | ee5fdafc63cae1e5149f9802f2cf3db88cb5ed10 (diff) | |
download | pfsense-a7f908dbec43e9764b084ddd8c066f0de8ecc28a.zip pfsense-a7f908dbec43e9764b084ddd8c066f0de8ecc28a.tar.gz |
* Add pkg.php which will parse the package xml file and present an interface (see http://www.pfsense.com/screens/pkg.JPG )
* Correct behavior of pkg_mgr.php when multiple packages are included
* Other minor cleanups
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/xmlparse.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/xmlparse.inc b/etc/inc/xmlparse.inc index f6d5308..7604e86 100644 --- a/etc/inc/xmlparse.inc +++ b/etc/inc/xmlparse.inc @@ -30,9 +30,9 @@ */ /* tags that are always to be handled as lists */ -$listtags = explode(" ", "item field rule user key subqueue dnsserver winsserver " . - "encryption-algorithm-option hash-algorithm-option hosts tunnel onetoone " . - "staticmap route alias pipe queue shellcmd earlyshellcmd mobilekey " . +$listtags = explode(" ", "package columnitem option item fieldname field rule user key subqueue " . + "dnsserver winsserver encryption-algorithm-option hash-algorithm-option hosts tunnel " . + "onetoone staticmap route alias pipe queue shellcmd earlyshellcmd mobilekey " . "servernat proxyarpnet passthrumac allowedip wolentry vlan"); function startElement($parser, $name, $attrs) { |