diff options
author | jim-p <jimp@pfsense.org> | 2013-03-07 13:53:12 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-03-07 13:53:12 -0500 |
commit | af8d854c9154a3e5ffb167e0170091ccac6a4ed4 (patch) | |
tree | e36d76f2c66eede66f30d7f5169412ca71065e7f | |
parent | 9b64b52d144adb3de77a9ecceadaa07f3337b93a (diff) | |
download | pfsense-af8d854c9154a3e5ffb167e0170091ccac6a4ed4.zip pfsense-af8d854c9154a3e5ffb167e0170091ccac6a4ed4.tar.gz |
Fix variable name reference, fixes port display after lan IP reset.
-rwxr-xr-x | etc/rc.initial.setlanip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.initial.setlanip b/etc/rc.initial.setlanip index f997242..2a73ad0 100755 --- a/etc/rc.initial.setlanip +++ b/etc/rc.initial.setlanip @@ -269,7 +269,7 @@ echo gettext('You can now access the webConfigurator by opening the following URL in your web browser:') . "\n"; if(!empty($config['system']['webgui']['port'])) { $webuiport = $config['system']['webgui']['port']; - echo " {$config['system']['webgui']['protocol']}://{$intip}:{$port}/\n"; + echo " {$config['system']['webgui']['protocol']}://{$intip}:{$webuiport}/\n"; } else { echo " {$config['system']['webgui']['protocol']}://{$intip}/\n"; } |