diff options
author | Mario <mario@mariovavti.com> | 2023-01-04 19:33:18 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-04 19:33:18 +0000 |
commit | e69fabcd712d409a67de3c1245a229a8e1b6f98d (patch) | |
tree | b2b1c084d3ade642f6024d27121d804f447c25e8 /Zotlabs | |
parent | 1a283301cf781c892a017094bf75e6b8e72fc4cd (diff) | |
download | volse-hubzilla-e69fabcd712d409a67de3c1245a229a8e1b6f98d.tar.gz volse-hubzilla-e69fabcd712d409a67de3c1245a229a8e1b6f98d.tar.bz2 volse-hubzilla-e69fabcd712d409a67de3c1245a229a8e1b6f98d.zip |
pdledi_gui: sort widgets
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Pdledit_gui.php | 2 |
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; } |