summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_pptp_users_edit.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/vpn_pptp_users_edit.php')
-rwxr-xr-xusr/local/www/vpn_pptp_users_edit.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/usr/local/www/vpn_pptp_users_edit.php b/usr/local/www/vpn_pptp_users_edit.php
index b3299ca..07961da 100755
--- a/usr/local/www/vpn_pptp_users_edit.php
+++ b/usr/local/www/vpn_pptp_users_edit.php
@@ -36,6 +36,19 @@
##|-PRIV
+function pptpd_users_sort() {
+ global $g, $config;
+
+ if (!is_array($config['ppptpd']['user']))
+ return;
+
+ function usercmp($a, $b) {
+ return strcasecmp($a['name'], $b['name']);
+ }
+
+ usort($config['pptpd']['user'], "usercmp");
+}
+
require("guiconfig.inc");
if (!is_array($config['pptpd']['user'])) {
@@ -103,6 +116,7 @@ if ($_POST) {
if ($_POST['password'])
$secretent['password'] = $_POST['password'];
+ pptpd_users_sort();
if (isset($id) && $a_secret[$id])
$a_secret[$id] = $secretent;
else
OpenPOWER on IntegriCloud