diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-10 13:21:53 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-10 13:21:53 -0300 |
commit | 01b8a2ff8e42439f606d050478580188220122ae (patch) | |
tree | 73d7a5654e2fa6ebb3168af7db8028b254d43938 /usr | |
parent | 6c74ac2363176cf4492b2331130998fc4c140048 (diff) | |
download | pfsense-01b8a2ff8e42439f606d050478580188220122ae.zip pfsense-01b8a2ff8e42439f606d050478580188220122ae.tar.gz |
Fix gettext call added wrong
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/interfaces_assign.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces_assign.php b/usr/local/www/interfaces_assign.php index aef014a..9addbfa 100755 --- a/usr/local/www/interfaces_assign.php +++ b/usr/local/www/interfaces_assign.php @@ -317,7 +317,7 @@ if ($_GET['act'] == "add") { break; } $newifname = 'opt' . $i; - $descr = sprintf(gettext("OPT '%s'"),$i); + $descr = "OPT" . $i; $config['interfaces'][$newifname] = array(); $config['interfaces'][$newifname]['descr'] = $descr; } |