summaryrefslogtreecommitdiffstats
path: root/usr/local/www/interfaces_lagg_edit.php
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2013-01-22 16:12:42 -0200
committerRenato Botelho <garga@FreeBSD.org>2013-01-22 16:43:31 -0200
commitf5e81794e145dc6a8416c3489955889fcd5a0c9a (patch)
treeb83dd23bce018fec5dfe4cbd06d4c65cfd60c64c /usr/local/www/interfaces_lagg_edit.php
parentee55ce7d9d2e70611ef9d0565905bcfe2fe478b0 (diff)
downloadpfsense-f5e81794e145dc6a8416c3489955889fcd5a0c9a.zip
pfsense-f5e81794e145dc6a8416c3489955889fcd5a0c9a.tar.gz
Fix indent and whitespace issues
Diffstat (limited to 'usr/local/www/interfaces_lagg_edit.php')
-rw-r--r--usr/local/www/interfaces_lagg_edit.php36
1 files changed, 18 insertions, 18 deletions
diff --git a/usr/local/www/interfaces_lagg_edit.php b/usr/local/www/interfaces_lagg_edit.php
index 4ddba72..5c2a181 100644
--- a/usr/local/www/interfaces_lagg_edit.php
+++ b/usr/local/www/interfaces_lagg_edit.php
@@ -50,8 +50,8 @@ $portlist = get_interface_list();
$realifchecklist = array();
/* add LAGG interfaces */
if (is_array($config['laggs']['lagg']) && count($config['laggs']['lagg'])) {
- foreach ($config['laggs']['lagg'] as $lagg) {
- unset($portlist[$lagg['laggif']]);
+ foreach ($config['laggs']['lagg'] as $lagg) {
+ unset($portlist[$lagg['laggif']]);
$laggiflist = explode(",", $lagg['members']);
foreach ($laggiflist as $tmpif)
$realifchecklist[get_real_interface($tmpif)] = $tmpif;
@@ -96,20 +96,20 @@ if ($_POST) {
if (isset($id) && $a_laggs[$id])
$lagg['laggif'] = $a_laggs[$id]['laggif'];
- $lagg['laggif'] = interface_lagg_configure($lagg);
- if ($lagg['laggif'] == "" || !stristr($lagg['laggif'], "lagg"))
- $input_errors[] = gettext("Error occured creating interface, please retry.");
- else {
- if (isset($id) && $a_laggs[$id])
- $a_laggs[$id] = $lagg;
- else
- $a_laggs[] = $lagg;
+ $lagg['laggif'] = interface_lagg_configure($lagg);
+ if ($lagg['laggif'] == "" || !stristr($lagg['laggif'], "lagg"))
+ $input_errors[] = gettext("Error occured creating interface, please retry.");
+ else {
+ if (isset($id) && $a_laggs[$id])
+ $a_laggs[$id] = $lagg;
+ else
+ $a_laggs[] = $lagg;
- write_config();
+ write_config();
$confif = convert_real_interface_to_friendly_interface_name($lagg['laggif']);
- if ($confif <> "")
- interface_configure($confif);
+ if ($confif <> "")
+ interface_configure($confif);
header("Location: interfaces_lagg.php");
exit;
@@ -136,7 +136,7 @@ include("head.inc");
<td width="78%" class="vtable">
<select name="members[]" multiple="true" size="4" class="formselect">
<?php
- foreach ($portlist as $ifn => $ifinfo) {
+ foreach ($portlist as $ifn => $ifinfo) {
if (array_key_exists($ifn, $realifchecklist))
continue;
echo "<option value=\"{$ifn}\"";
@@ -144,7 +144,7 @@ include("head.inc");
echo "selected";
echo ">". $ifn ."(".$ifinfo['mac'] .")</option>";
}
- ?>
+ ?>
</select>
<br/>
<span class="vexpl"><?=gettext("Choose the members that will be used for the link aggregation"); ?>.</span></td>
@@ -154,19 +154,19 @@ include("head.inc");
<td class="vtable">
<select name="proto" class="formselect" id="proto">
<?php
- foreach (array("none", "lacp", "failover", "fec", "loadbalance", "roundrobin") as $proto) {
+ foreach (array("none", "lacp", "failover", "fec", "loadbalance", "roundrobin") as $proto) {
echo "<option value=\"{$proto}\"";
if ($proto == $pconfig['proto'])
echo "selected";
echo ">".strtoupper($proto)."</option>";
}
?>
- </select>
+ </select>
<br/>
<span class="vexpl">
<ul>
<li>
- <b><?=gettext("failover"); ?></b><br/>
+ <b><?=gettext("failover"); ?></b><br/>
<?=gettext("Sends and receives traffic only through the master port. If " .
"the master port becomes unavailable, the next active port is " .
"used. The first interface added is the master port; any " .
OpenPOWER on IntegriCloud