summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_captiveportal_mac_edit.php
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2009-06-30 18:15:14 +0000
committerErmal Luçi <eri@pfsense.org>2009-06-30 18:16:09 +0000
commit0d64af597505a0e9c21d48669aafc8e1448b102b (patch)
treedc7101c26d46efc532af66aaaadf7825bd8e8bf2 /usr/local/www/services_captiveportal_mac_edit.php
parentd44d94c5c51c7bd7c6de810abfe0c3266cf947b1 (diff)
downloadpfsense-0d64af597505a0e9c21d48669aafc8e1448b102b.zip
pfsense-0d64af597505a0e9c21d48669aafc8e1448b102b.tar.gz
Clear guiconfig from all sort junk functions and put them on the specific pages where they are needed.
Remove some sort functions not used.
Diffstat (limited to 'usr/local/www/services_captiveportal_mac_edit.php')
-rwxr-xr-xusr/local/www/services_captiveportal_mac_edit.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/usr/local/www/services_captiveportal_mac_edit.php b/usr/local/www/services_captiveportal_mac_edit.php
index 0b6b329..c4e138f 100755
--- a/usr/local/www/services_captiveportal_mac_edit.php
+++ b/usr/local/www/services_captiveportal_mac_edit.php
@@ -35,6 +35,15 @@
##|*MATCH=services_captiveportal_mac_edit.php*
##|-PRIV
+function passthrumacs_sort() {
+ global $g, $config;
+
+ function passthrumacscmp($a, $b) {
+ return strcmp($a['mac'], $b['mac']);
+ }
+
+ usort($config['captiveportal']['passthrumac'],"passthrumacscmp");
+}
$pgtitle = array("Services","Captive portal","Edit pass-through MAC address");
require("guiconfig.inc");
@@ -86,6 +95,7 @@ if ($_POST) {
$mac['mac'] = $_POST['mac'];
$mac['descr'] = $_POST['descr'];
+ passthrumacs_sort();
if (isset($id) && $a_passthrumacs[$id])
$a_passthrumacs[$id] = $mac;
else
OpenPOWER on IntegriCloud