aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-01-04 19:33:18 +0000
committerMario <mario@mariovavti.com>2023-01-04 19:33:18 +0000
commite69fabcd712d409a67de3c1245a229a8e1b6f98d (patch)
treeb2b1c084d3ade642f6024d27121d804f447c25e8 /Zotlabs/Module
parent1a283301cf781c892a017094bf75e6b8e72fc4cd (diff)
downloadvolse-hubzilla-e69fabcd712d409a67de3c1245a229a8e1b6f98d.tar.gz
volse-hubzilla-e69fabcd712d409a67de3c1245a229a8e1b6f98d.tar.bz2
volse-hubzilla-e69fabcd712d409a67de3c1245a229a8e1b6f98d.zip
pdledi_gui: sort widgets
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Pdledit_gui.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php
index 2f0e4a3e1..dadb3296e 100644
--- a/Zotlabs/Module/Pdledit_gui.php
+++ b/Zotlabs/Module/Pdledit_gui.php
@@ -304,6 +304,8 @@ class Pdledit_gui extends Controller {
}
}
+ usort($ret, fn($a, $b) => $a['name'] <=> $b['name']);
+
return $ret;
}