summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2014-10-30 20:30:52 -0500
committerChris Buechler <cmb@pfsense.org>2014-10-30 20:30:52 -0500
commite4982b905279930fefbf09bb62f09a364bb0fde4 (patch)
tree2c41e513fab58a98ca272bf05d64a4aec01d6810
parent70eef83536a3f89e181322ff56a2e1fd7aedfef2 (diff)
downloadpfsense-e4982b905279930fefbf09bb62f09a364bb0fde4.zip
pfsense-e4982b905279930fefbf09bb62f09a364bb0fde4.tar.gz
fix typoed gettext
-rwxr-xr-xusr/local/www/interfaces_vlan.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces_vlan.php b/usr/local/www/interfaces_vlan.php
index 7639c0f..19151db 100755
--- a/usr/local/www/interfaces_vlan.php
+++ b/usr/local/www/interfaces_vlan.php
@@ -61,9 +61,9 @@ function vlan_inuse($num) {
if ($_GET['act'] == "del") {
if (!isset($_GET['id']))
- $input_errors[] = getext("Wrong parameters supplied");
+ $input_errors[] = gettext("Wrong parameters supplied");
else if (empty($a_vlans[$_GET['id']]))
- $input_errors[] = getext("Wrong index supplied");
+ $input_errors[] = gettext("Wrong index supplied");
/* check if still in use */
else if (vlan_inuse($_GET['id'])) {
$input_errors[] = gettext("This VLAN cannot be deleted because it is still being used as an interface.");
OpenPOWER on IntegriCloud