diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-08-30 03:50:32 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-08-30 03:50:32 +0000 |
commit | f47e0c8af71525e0518893f8c6aea6b08bbaa86c (patch) | |
tree | 930fb5097fb8376af40d349941697e7548c71fdf /usr/local | |
parent | b3277798e5f6f3e02468f58e315e37362d932d02 (diff) | |
download | pfsense-f47e0c8af71525e0518893f8c6aea6b08bbaa86c.zip pfsense-f47e0c8af71525e0518893f8c6aea6b08bbaa86c.tar.gz |
Initialize string
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/diag_backup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/diag_backup.php b/usr/local/www/diag_backup.php index 22494a4..3942f73 100755 --- a/usr/local/www/diag_backup.php +++ b/usr/local/www/diag_backup.php @@ -60,7 +60,7 @@ function check_and_returnif_section_exists($section) { function spit_out_select_items($area) { global $config; - + $areas = array("aliases" => "Aliases", "shaper" => "Traffic Shaper", "filter" => "Firewall Rules", @@ -76,7 +76,7 @@ function spit_out_select_items($area) { "staticroutes" => "Static routes" ); - $select .= "<select name=\"{$area}\">\n"; + $select = "<select name=\"{$area}\">\n"; $select .= "<option VALUE=\"\">ALL</option>"; foreach($areas as $area => $areaname) |