From: Michael Vogel Date: Sat, 14 Nov 2015 08:27:24 +0000 (+0100) Subject: Sort the plugin configuration on the admin page by name X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=47d6e4364257fbe6e1fbd00e74b7965e5191c00d;p=friendica.git Sort the plugin configuration on the admin page by name --- diff --git a/mod/admin.php b/mod/admin.php index 21731eb510..d9a17dcad7 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -135,7 +135,7 @@ function admin_content(&$a) { /* get plugins admin page */ - $r = q("SELECT name FROM `addon` WHERE `plugin_admin`=1"); + $r = q("SELECT `name` FROM `addon` WHERE `plugin_admin`=1 ORDER BY `name`"); $aside['plugins_admin']=Array(); foreach ($r as $h){ $plugin =$h['name'];