diff options
author | thompsa <andy@fud.org.nz> | 2010-04-12 12:06:08 +1200 |
---|---|---|
committer | thompsa <andy@fud.org.nz> | 2010-04-12 12:06:08 +1200 |
commit | 06e2a55d701f750997061086f0c8879bad9d0e24 (patch) | |
tree | 6b694b88cad53e058e844dcf20085ccc9f8ccb76 | |
parent | 1e027f7bf161f2603b51a7f6be50c32e6006dd08 (diff) | |
download | pfsense-06e2a55d701f750997061086f0c8879bad9d0e24.zip pfsense-06e2a55d701f750997061086f0c8879bad9d0e24.tar.gz |
Initialise the correct array if empty.
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index a41bcb2..e88ac6a 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -1252,7 +1252,7 @@ include("head.inc"); <select name="l7container"> <?php if (!is_array($l7clist)) - $dnqlist = array(); + $l7clist = array(); echo "<option value=\"none\""; echo " >none</option>"; foreach ($l7clist as $l7ckey) { |