Revision 41aa5cd4
Added by Phil Davis almost 11 years ago
usr/local/www/interfaces_lagg.php | ||
---|---|---|
66 | 66 |
|
67 | 67 |
if ($_GET['act'] == "del") { |
68 | 68 |
if (!isset($_GET['id'])) |
69 |
$input_errors[] = getext("Wrong parameters supplied"); |
|
69 |
$input_errors[] = gettext("Wrong parameters supplied");
|
|
70 | 70 |
else if (empty($a_laggs[$_GET['id']])) |
71 |
$input_errors[] = getext("Wrong index supplied"); |
|
71 |
$input_errors[] = gettext("Wrong index supplied");
|
|
72 | 72 |
/* check if still in use */ |
73 | 73 |
else if (lagg_inuse($_GET['id'])) { |
74 | 74 |
$input_errors[] = gettext("This LAGG interface cannot be deleted because it is still being used."); |
Also available in: Unified diff
Fix getext to gettext typo