summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_l2tp_users_edit.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/vpn_l2tp_users_edit.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/vpn_l2tp_users_edit.php')
-rw-r--r--usr/local/www/vpn_l2tp_users_edit.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/local/www/vpn_l2tp_users_edit.php b/usr/local/www/vpn_l2tp_users_edit.php
index 4fa0f52..e132606 100644
--- a/usr/local/www/vpn_l2tp_users_edit.php
+++ b/usr/local/www/vpn_l2tp_users_edit.php
@@ -36,21 +36,21 @@
##|*MATCH=vpn_l2tp_users_edit.php*
##|-PRIV
-$pgtitle = array(gettext("VPN"),gettext("L2TP"),gettext("User"),gettext("Edit"));
+$pgtitle = array(gettext("VPN"), gettext("L2TP"), gettext("User"), gettext("Edit"));
$shortcut_section = "l2tps";
-function l2tpusercmp($a, $b) {
- return strcasecmp($a['name'], $b['name']);
+function l2tpusercmp($a, $b) {
+ return strcasecmp($a['name'], $b['name']);
}
-function l2tp_users_sort() {
+function l2tp_users_sort() {
global $config;
if (!is_array($config['l2tp']['user'])) {
return;
}
- usort($config['l2tp']['user'], "l2tpusercmp");
+ usort($config['l2tp']['user'], "l2tpusercmp");
}
require("guiconfig.inc");
@@ -86,7 +86,7 @@ if ($_POST) {
$reqdfieldsn = array(gettext("Username"));
} else {
$reqdfields = explode(" ", "usernamefld passwordfld");
- $reqdfieldsn = array(gettext("Username"),gettext("Password"));
+ $reqdfieldsn = array(gettext("Username"), gettext("Password"));
}
do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
OpenPOWER on IntegriCloud