summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_pptp_users_edit.php
diff options
context:
space:
mode:
authorErik Fonnesbeck <efonnes@gmail.com>2010-03-10 19:26:08 -0700
committerErik Fonnesbeck <efonnes@gmail.com>2010-03-10 19:31:56 -0700
commit0e3aa71cd00836a3621ca68cb7e060b0d07e1327 (patch)
tree7651ebd517f34634dbfff6a25c2886792e9f2204 /usr/local/www/vpn_pptp_users_edit.php
parenteb20f3c51e41cb65885589bbb229860ed069f78f (diff)
downloadpfsense-0e3aa71cd00836a3621ca68cb7e060b0d07e1327.zip
pfsense-0e3aa71cd00836a3621ca68cb7e060b0d07e1327.tar.gz
Fix sorting issues that were introduced in an old commit, resulting in the incorrect item sometimes being shown when clicking edit buttons.
Diffstat (limited to 'usr/local/www/vpn_pptp_users_edit.php')
-rwxr-xr-xusr/local/www/vpn_pptp_users_edit.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/local/www/vpn_pptp_users_edit.php b/usr/local/www/vpn_pptp_users_edit.php
index 5d5c9e2..86202aa 100755
--- a/usr/local/www/vpn_pptp_users_edit.php
+++ b/usr/local/www/vpn_pptp_users_edit.php
@@ -54,7 +54,6 @@ require_once("vpn.inc");
if (!is_array($config['pptpd']['user'])) {
$config['pptpd']['user'] = array();
}
-pptpd_users_sort();
$a_secret = &$config['pptpd']['user'];
$id = $_GET['id'];
@@ -116,11 +115,11 @@ if ($_POST) {
if ($_POST['password'])
$secretent['password'] = $_POST['password'];
- pptpd_users_sort();
if (isset($id) && $a_secret[$id])
$a_secret[$id] = $secretent;
else
$a_secret[] = $secretent;
+ pptpd_users_sort();
write_config();
mark_subsystem_dirty('pptpusers');
OpenPOWER on IntegriCloud