diff options
author | Phil Davis <phil.davis@inf.org> | 2015-11-17 17:43:42 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2015-11-17 17:43:42 +0545 |
commit | 08c68ac1a46727de7dcab8e3cbb72738ac5611e5 (patch) | |
tree | dd68183c5a1b2f85226313a9a66f2df775c5d40b /src/usr | |
parent | b1fd554296494b5d771e263c664ee92c23fbb0fe (diff) | |
download | pfsense-08c68ac1a46727de7dcab8e3cbb72738ac5611e5.zip pfsense-08c68ac1a46727de7dcab8e3cbb72738ac5611e5.tar.gz |
Fix Packet Capture section heading
and provide some text for the 'dnsquery' checkbox - this makes the checkbox line up properly in the columns.
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/diag_packet_capture.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/diag_packet_capture.php b/src/usr/local/www/diag_packet_capture.php index f080649..466fcc4 100644 --- a/src/usr/local/www/diag_packet_capture.php +++ b/src/usr/local/www/diag_packet_capture.php @@ -292,7 +292,7 @@ require_once('classes/Form.class.php'); $form = new Form(false); // No button yet. We add those later depending on the required action -$section = new Form_Section('General Logging Options'); +$section = new Form_Section('Packet Capture Options'); $section->addInput(new Form_Select( 'interface', @@ -376,7 +376,7 @@ $section->addInput(new Form_Select( $section->addInput(new Form_Checkbox( 'dnsquery', 'Reverse DNS Lookup', - null, + 'Do reverse DNS lookup', $_POST['dnsquery'] ))->setHelp('This check box will cause the packet capture to perform a reverse DNS lookup associated with all IP addresses.' . '<br />' . 'This option can cause delays for large packet captures.'); |