summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2016-10-20 15:17:07 +0930
committerPhil Davis <phil.davis@inf.org>2016-10-20 15:17:07 +0930
commit6a54698517430760ddcbc84dd0476046d3926b31 (patch)
treef4cc8d91f6a201f255d6de27c71257cd65fdd48c
parentd461ff40e364fc0ecc003b9f673cbad7c6a08f2f (diff)
downloadpfsense-6a54698517430760ddcbc84dd0476046d3926b31.zip
pfsense-6a54698517430760ddcbc84dd0476046d3926b31.tar.gz
Remove "use lowercase" hint
As it is no longer relevant, because the code now automatically converts to lowercase.
-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 b620c0e..812a2f7 100644
--- a/src/usr/local/www/classes/Form/IpAddress.class.php
+++ b/src/usr/local/www/classes/Form/IpAddress.class.php
@@ -31,7 +31,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;
@@ -42,7 +42,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