summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2017-01-22 15:34:10 +0545
committerPhil Davis <phil.davis@inf.org>2017-01-22 15:34:10 +0545
commit3e2028f4dca359e715058d2c35ae0df5b939657e (patch)
treeb03c3c4ca915f58421b6fa8f031dda1aff4d1171
parentb2bb49709d6d1cb845f2c7caf40bebe375ecb2d7 (diff)
downloadpfsense-3e2028f4dca359e715058d2c35ae0df5b939657e.zip
pfsense-3e2028f4dca359e715058d2c35ae0df5b939657e.tar.gz
Required fields in diagnostics
-rw-r--r--src/usr/local/www/diag_authentication.php4
-rw-r--r--src/usr/local/www/diag_dns.php2
-rw-r--r--src/usr/local/www/diag_ping.php2
-rw-r--r--src/usr/local/www/diag_testport.php4
-rw-r--r--src/usr/local/www/diag_traceroute.php2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/local/www/diag_authentication.php b/src/usr/local/www/diag_authentication.php
index e03bd55..8d416cc 100644
--- a/src/usr/local/www/diag_authentication.php
+++ b/src/usr/local/www/diag_authentication.php
@@ -95,7 +95,7 @@ $section->addInput(new Form_Select(
$section->addInput(new Form_Input(
'username',
- 'Username',
+ '*Username',
'text',
$pconfig['username'],
['placeholder' => 'Username']
@@ -103,7 +103,7 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Input(
'password',
- 'Password',
+ '*Password',
'password',
$pconfig['password'],
['placeholder' => 'Password']
diff --git a/src/usr/local/www/diag_dns.php b/src/usr/local/www/diag_dns.php
index bb44e73..de1b8bb 100644
--- a/src/usr/local/www/diag_dns.php
+++ b/src/usr/local/www/diag_dns.php
@@ -219,7 +219,7 @@ $section = new Form_Section('DNS Lookup');
$section->addInput(new Form_Input(
'host',
- 'Hostname',
+ '*Hostname',
'text',
$host,
['placeholder' => 'Hostname to look up.']
diff --git a/src/usr/local/www/diag_ping.php b/src/usr/local/www/diag_ping.php
index 492e98a..0e87f2e 100644
--- a/src/usr/local/www/diag_ping.php
+++ b/src/usr/local/www/diag_ping.php
@@ -128,7 +128,7 @@ $section = new Form_Section('Ping');
$section->addInput(new Form_Input(
'host',
- 'Hostname',
+ '*Hostname',
'text',
$host,
['placeholder' => 'Hostname to ping']
diff --git a/src/usr/local/www/diag_testport.php b/src/usr/local/www/diag_testport.php
index 68e3a60..af38e17 100644
--- a/src/usr/local/www/diag_testport.php
+++ b/src/usr/local/www/diag_testport.php
@@ -218,7 +218,7 @@ $section = new Form_Section('Test Port');
$section->addInput(new Form_Input(
'host',
- 'Hostname',
+ '*Hostname',
'text',
$host,
['placeholder' => 'Hostname to look up.']
@@ -226,7 +226,7 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Input(
'port',
- 'Port',
+ '*Port',
'text',
$port,
['placeholder' => 'Port to test.']
diff --git a/src/usr/local/www/diag_traceroute.php b/src/usr/local/www/diag_traceroute.php
index efb0d85..6ede87b 100644
--- a/src/usr/local/www/diag_traceroute.php
+++ b/src/usr/local/www/diag_traceroute.php
@@ -122,7 +122,7 @@ $section = new Form_Section('Traceroute');
$section->addInput(new Form_Input(
'host',
- 'Hostname',
+ '*Hostname',
'text',
$host,
['placeholder' => 'Hostname to trace.']
OpenPOWER on IntegriCloud