From e4982b905279930fefbf09bb62f09a364bb0fde4 Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Thu, 30 Oct 2014 20:30:52 -0500 Subject: [PATCH] fix typoed gettext --- usr/local/www/interfaces_vlan.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/www/interfaces_vlan.php b/usr/local/www/interfaces_vlan.php index 7639c0fd01..19151dbc95 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.");