diff options
author | Warren Baker <warren@decoy.co.za> | 2012-04-25 08:39:21 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2012-04-25 08:39:21 +0200 |
commit | 0cfaf2c830e834932ca56fa3b6aa398bcb8db898 (patch) | |
tree | 423f823c963e8e61881c18bb0c3e554e9067f548 /usr/local/www | |
parent | 8de4a8bc4d52755dce1fbf2fe80d45687397a429 (diff) | |
download | pfsense-0cfaf2c830e834932ca56fa3b6aa398bcb8db898.zip pfsense-0cfaf2c830e834932ca56fa3b6aa398bcb8db898.tar.gz |
Revert "Use 'Packet Loss or High Latency' as the default option when creating a new gateway group"
This reverts commit 6ee04b69c8ace44e798e29e665039455aad1c439.
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/system_gateway_groups_edit.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr/local/www/system_gateway_groups_edit.php b/usr/local/www/system_gateway_groups_edit.php index e8a1472..f7814cf 100755 --- a/usr/local/www/system_gateway_groups_edit.php +++ b/usr/local/www/system_gateway_groups_edit.php @@ -47,12 +47,10 @@ if (!is_array($config['gateways']['gateway_group'])) $a_gateway_groups = &$config['gateways']['gateway_group']; $a_gateways = return_gateways_array(); -$categories = array( - 'downlosslatency' => gettext("Packet Loss or High Latency"). - 'downloss' => gettext("Packet Loss"), - 'downlatency' => gettext("High Latency"), - 'down' => gettext("Member Down") - ); +$categories = array('down' => gettext("Member Down"), + 'downloss' => gettext("Packet Loss"), + 'downlatency' => gettext("High Latency"), + 'downlosslatency' => gettext("Packet Loss or High Latency")); $id = $_GET['id']; if (isset($_POST['id'])) |