summaryrefslogtreecommitdiffstats
path: root/usr/local/www/diag_testport.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2013-01-11 13:00:22 -0500
committerjim-p <jimp@pfsense.org>2013-01-11 13:00:22 -0500
commitd8b8937d1893bf508802ba52f6d13a20e7e04c50 (patch)
tree55b01a7c84b561fd42e648d092f1974a3b8e1e53 /usr/local/www/diag_testport.php
parent526102c1f665eb39853be9d6acf151c4ecfcc3ae (diff)
downloadpfsense-d8b8937d1893bf508802ba52f6d13a20e7e04c50.zip
pfsense-d8b8937d1893bf508802ba52f6d13a20e7e04c50.tar.gz
Fix some typos
Diffstat (limited to 'usr/local/www/diag_testport.php')
-rw-r--r--usr/local/www/diag_testport.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/diag_testport.php b/usr/local/www/diag_testport.php
index 6309fab..548d761 100644
--- a/usr/local/www/diag_testport.php
+++ b/usr/local/www/diag_testport.php
@@ -61,15 +61,15 @@ if ($_POST || $_REQUEST['host']) {
do_input_validation($_REQUEST, $reqdfields, $reqdfieldsn, &$input_errors);
if (!is_ipaddr($_REQUEST['host']) && !is_hostname($_REQUEST['host'])) {
- $input_errors[] = gettext("Please enter a a valid IP or hostname.");
+ $input_errors[] = gettext("Please enter a valid IP or hostname.");
}
if (!is_port($_REQUEST['port'])) {
- $input_errors[] = gettext("Please enter a a valid port number.");
+ $input_errors[] = gettext("Please enter a valid port number.");
}
if (is_numeric($_REQUEST['srcport']) && !is_port($_REQUEST['srcport'])) {
- $input_errors[] = gettext("Please enter a a valid source port number, or leave the field blank.");
+ $input_errors[] = gettext("Please enter a valid source port number, or leave the field blank.");
}
if (is_ipaddrv4($_REQUEST['host']) && ($_REQUEST['ipprotocol'] == "ipv6")) {
@@ -105,7 +105,7 @@ include("head.inc"); ?>
<tr><td>
<?php echo gettext("This page allows you to perform a simple TCP connection test to determine if a host is up and accepting connections on a given port. This test does not function for UDP since there is no way to reliably determine if a UDP port accepts connections in this manner."); ?>
<br/><br/>
-<?php echo gettext("No data is transmitted to the remote host during this test, it will only attempt open a connection and optionally display the data sent back from the server."); ?>
+<?php echo gettext("No data is transmitted to the remote host during this test, it will only attempt to open a connection and optionally display the data sent back from the server."); ?>
<br/><br/><br/>
<?php if ($input_errors) print_input_errors($input_errors); ?>
<form action="diag_testport.php" method="post" name="iform" id="iform">
OpenPOWER on IntegriCloud