diff options
author | Bill Marquette <billm@pfsense.org> | 2005-08-06 04:26:06 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-08-06 04:26:06 +0000 |
commit | f60e625952c7379575420c3033fdf8c4e3ca7bb4 (patch) | |
tree | a91f190469504ddfdf299c3b886f86bc0df798b1 /etc | |
parent | f5059a6a5af025589313013f5c305238386e27f9 (diff) | |
download | pfsense-f60e625952c7379575420c3033fdf8c4e3ca7bb4.zip pfsense-f60e625952c7379575420c3033fdf8c4e3ca7bb4.tar.gz |
alphabetize listtags
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/xmlparse.inc | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/etc/inc/xmlparse.inc b/etc/inc/xmlparse.inc index bb16495..416a8ef 100644 --- a/etc/inc/xmlparse.inc +++ b/etc/inc/xmlparse.inc @@ -32,12 +32,11 @@ /* Config XML tags that should be treat as a list not as a traditional array */ function listtags() { - $ret = explode(" ", "cacert row config package columnitem option item fieldname field rule user key subqueue " . - "dnsserver winsserver encryption-algorithm-option hash-algorithm-option hosts tunnel " . - "onetoone staticmap route alias queue shellcmd earlyshellcmd mobilekey " . - "service servernat proxyarpnet passthrumac allowedip wolentry vlan menu domainoverrides " . - "vip"); - + $ret = explode(" ", "alias allowedip cacert config columnitem dnsserver domainoverrides " . + "earlyshellcmd encryption-algorithm-option field fieldname hash-algorithm-option " . + "hosts item key menu mobilekey onetoone option package passthrumac proxyarpnet ". + "queue route row rule service servernat shellcmd staticmap subqueue" . + "tunnel user vip vlan winsserver wolentry"); return $ret; } @@ -238,4 +237,4 @@ function dump_xml_config_raw($arr, $rootobj) { return $xmlconfig; } -?>
\ No newline at end of file +?> |