diff options
author | Darren Embry <dse@webonastick.com> | 2012-06-07 11:48:13 -0400 |
---|---|---|
committer | Darren Embry <dse@webonastick.com> | 2012-06-07 11:48:13 -0400 |
commit | db0d446fd4eadc5e22c8917f1e12a30deb3865f2 (patch) | |
tree | 8ceafe5aff1b6f70c4d888e79ba81dc6b220f504 | |
parent | 838a1ecbcd36c849566573a89ae96c82f31667ee (diff) | |
download | pfsense-db0d446fd4eadc5e22c8917f1e12a30deb3865f2.zip pfsense-db0d446fd4eadc5e22c8917f1e12a30deb3865f2.tar.gz |
fix for bug #2469 ("WAN -> LAN -> OPT10")
-rw-r--r-- | etc/inc/config.console.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/config.console.inc b/etc/inc/config.console.inc index f6acabc..3855107 100644 --- a/etc/inc/config.console.inc +++ b/etc/inc/config.console.inc @@ -256,11 +256,11 @@ EOD; if ($optif[$i]) $i++; $io = $i + 1; - + if($config['interfaces']['opt' . $io]['descr']) printf(gettext("%sOptional interface %s description found: %s"), "\n", $io, $config['interfaces']['opt' . $io]['descr']); - printf(gettext("%sEnter the Optional %s{$i} interface name or 'a' for auto-detection%s" . + printf(gettext("%sEnter the Optional %s interface name or 'a' for auto-detection%s" . "(or nothing if finished):%s"), "\n", $io, "\n", " "); $optif[$i] = chop(fgets($fp)); |