summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_wireless.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-06-15 14:19:11 +0545
committerPhil Davis <phil.davis@inf.org>2015-06-15 14:19:11 +0545
commit6c07db487164262f9191ad02805523bd153e0ba6 (patch)
tree0c266356179ac730233a16c0e3767a0c22514c4d /usr/local/www/status_wireless.php
parent67d9685607eef7c679fda929ad4855be1b2f9dec (diff)
downloadpfsense-6c07db487164262f9191ad02805523bd153e0ba6.zip
pfsense-6c07db487164262f9191ad02805523bd153e0ba6.tar.gz
Code spacing
and other random stuff I noticed. I think this finishes messing with code style. The codebase should match the developer style guide closely enough that 99.9% of changes will not feel the need to also massage the formatting.
Diffstat (limited to 'usr/local/www/status_wireless.php')
-rw-r--r--usr/local/www/status_wireless.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/status_wireless.php b/usr/local/www/status_wireless.php
index d15cfed..be51458 100644
--- a/usr/local/www/status_wireless.php
+++ b/usr/local/www/status_wireless.php
@@ -39,7 +39,7 @@
require_once("guiconfig.inc");
-$pgtitle = array(gettext("Status"),gettext("Wireless"));
+$pgtitle = array(gettext("Status"), gettext("Wireless"));
$shortcut_section = "wireless";
include("head.inc");
@@ -114,7 +114,7 @@ include("fbegin.inc");
/* Skip Header */
array_shift($states);
- $counter=0;
+ $counter = 0;
foreach ($states as $state) {
/* Split by Mac address for the SSID Field */
$split = preg_split("/([0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f])/i", $state);
@@ -165,7 +165,7 @@ include("fbegin.inc");
exec("/sbin/ifconfig {$rwlif} list sta 2>&1", $states, $ret);
array_shift($states);
- $counter=0;
+ $counter = 0;
foreach ($states as $state) {
$split = preg_split("/[ ]+/i", $state);
/* Split the rest by using spaces for this line using the 2nd part */
OpenPOWER on IntegriCloud