summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/wizards
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-01-22 16:27:47 -0200
committerRenato Botelho <renato@netgate.com>2016-01-22 16:27:47 -0200
commit379b4b6d95121198e9a5d02018b988220649b737 (patch)
tree6adf1415c068bb87fe307a36584176c1892795ef /src/usr/local/www/wizards
parentdaa5312f4cd54bb1671624a4d1b3fa066f80e4c1 (diff)
downloadpfsense-379b4b6d95121198e9a5d02018b988220649b737.zip
pfsense-379b4b6d95121198e9a5d02018b988220649b737.tar.gz
Fix indent
Diffstat (limited to 'src/usr/local/www/wizards')
-rw-r--r--src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc b/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
index 91b9b19..d69eadb 100644
--- a/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
+++ b/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
@@ -160,8 +160,10 @@ function step2_stepbeforeformdisplay() {
$field['options']['option'] = array();
foreach ($iflist as $ifname => $ifdescr) {
// Skip wan interfaces here
- if (interface_has_gateway($ifname) || interface_has_gatewayv6($ifname))
+ if (interface_has_gateway($ifname) ||
+ interface_has_gatewayv6($ifname)) {
continue;
+ }
$opts = array();
$opts['displayname'] = $ifdescr;
$opts['name'] = $ifname;
@@ -211,8 +213,10 @@ function step2_stepbeforeformdisplay() {
$field['options']['option'] = array();
foreach ($iflist as $ifname => $ifdescr) {
// Skip lan interfaces here
- if (!interface_has_gateway($ifname) && !interface_has_gatewayv6($ifname))
+ if (!interface_has_gateway($ifname) &&
+ !interface_has_gatewayv6($ifname)) {
continue;
+ }
$opts = array();
$opts['displayname'] = $ifdescr;
$opts['name'] = $ifname;
OpenPOWER on IntegriCloud