diff options
author | Bill Marquette <billm@pfsense.org> | 2005-06-27 05:12:44 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-06-27 05:12:44 +0000 |
commit | 2fe045e54700fb8578a7999151bd8f19bc748740 (patch) | |
tree | 2c0c857f27227d69e6e5afd0aba0f4c81bc6a7c6 /etc | |
parent | eeb6c16ec4d233505e4bbd5f4056ec2d3f2de614 (diff) | |
download | pfsense-2fe045e54700fb8578a7999151bd8f19bc748740.zip pfsense-2fe045e54700fb8578a7999151bd8f19bc748740.tar.gz |
Add comments
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/xmlparse.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/inc/xmlparse.inc b/etc/inc/xmlparse.inc index a9c9080..066f3b4 100644 --- a/etc/inc/xmlparse.inc +++ b/etc/inc/xmlparse.inc @@ -30,6 +30,7 @@ POSSIBILITY OF SUCH DAMAGE. */ +/* 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 " . @@ -39,6 +40,7 @@ function listtags() { return $ret; } +/* Package XML tags that should be treat as a list not as a traditional array */ function listtags_pkg() { $ret = array("onetoone", "queue", "rule", "servernat", "alias", "additional_files_needed", "tab", "template", "menu", "rowhelperfield", "service", "step", "package", "columnitem", "option", "item", "field", "package"); |