summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/classes
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2016-10-20 15:17:07 +0930
committerRenato Botelho <renato@netgate.com>2016-11-10 08:01:28 -0200
commitb68edd49cb2941b96d4c8663093921e0af104c01 (patch)
treeb9ef941d35b914d647dc927d9fc7107f26aeab0b /src/usr/local/www/classes
parent6df432c3e50c288aa664eec02713457c62d8a8f5 (diff)
downloadpfsense-b68edd49cb2941b96d4c8663093921e0af104c01.zip
pfsense-b68edd49cb2941b96d4c8663093921e0af104c01.tar.gz
Remove "use lowercase" hint
As it is no longer relevant, because the code now automatically converts to lowercase. (cherry picked from commit 6a54698517430760ddcbc84dd0476046d3926b31)
Diffstat (limited to 'src/usr/local/www/classes')
-rw-r--r--src/usr/local/www/classes/Form/IpAddress.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/classes/Form/IpAddress.class.php b/src/usr/local/www/classes/Form/IpAddress.class.php
index 376b3b1..9a2cc16 100644
--- a/src/usr/local/www/classes/Form/IpAddress.class.php
+++ b/src/usr/local/www/classes/Form/IpAddress.class.php
@@ -63,7 +63,7 @@ class Form_IpAddress extends Form_Input
switch ($type) {
case "BOTH":
$this->_attributes['pattern'] = '[a-f0-9:.]*';
- $this->_attributes['title'] = 'An IPv4 address like 1.2.3.4 or an IPv6 address like 1:2a:3b:ffff::1 (use lowercase)';
+ $this->_attributes['title'] = 'An IPv4 address like 1.2.3.4 or an IPv6 address like 1:2a:3b:ffff::1';
$this->_attributes['onChange'] = 'javascript:this.value=this.value.toLowerCase();';
break;
@@ -74,7 +74,7 @@ class Form_IpAddress extends Form_Input
case "V6":
$this->_attributes['pattern'] = '[a-f0-9:]*';
- $this->_attributes['title'] = 'An IPv6 address like 1:2a:3b:ffff::1 (use lowercase)';
+ $this->_attributes['title'] = 'An IPv6 address like 1:2a:3b:ffff::1';
$this->_attributes['onChange'] = 'javascript:this.value=this.value.toLowerCase();';
break;
}
OpenPOWER on IntegriCloud