diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-10-25 02:53:37 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-10-25 02:53:37 +0000 |
commit | 41fd0445840bdd37d7be019eab800bfc331ef812 (patch) | |
tree | 9dda73b91f0eeefb8a87f8e00016d13ae65dab03 /usr | |
parent | 32487e426c3b2c4d6f171357e7416bd0b4454618 (diff) | |
download | pfsense-41fd0445840bdd37d7be019eab800bfc331ef812.zip pfsense-41fd0445840bdd37d7be019eab800bfc331ef812.tar.gz |
Ignore listtopic fields
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/pkg_edit.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/local/www/pkg_edit.php b/usr/local/www/pkg_edit.php index 17b25bd..a88c25f 100755 --- a/usr/local/www/pkg_edit.php +++ b/usr/local/www/pkg_edit.php @@ -145,6 +145,8 @@ if ($_POST) { if (!$input_errors) { $pkgarr = array(); foreach ($pkg['fields']['field'] as $fields) { + if($fields['type'] == "listtopic") + continue; if($fields['type'] == "rowhelper") { // save rowhelper items. for($x=0; $x<99; $x++) { // XXX: this really should be passed from the form. |