From 92cb614ce73286971708fe91d9bea0ae6f3e5838 Mon Sep 17 00:00:00 2001 From: sb0001 <48289594+sb0001@users.noreply.github.com> Date: Fri, 8 Dec 2023 23:12:35 +0100 Subject: [PATCH] Update edit-content.html.php sort the dropdown list of categories alphabetically when editing a post --- system/admin/views/edit-content.html.php | 1 + 1 file changed, 1 insertion(+) diff --git a/system/admin/views/edit-content.html.php b/system/admin/views/edit-content.html.php index f5f8a15..2def7b2 100644 --- a/system/admin/views/edit-content.html.php +++ b/system/admin/views/edit-content.html.php @@ -7,6 +7,7 @@ if (isset($p->file)) { } $desc = get_category_info(null); +asort($desc); $content = file_get_contents($url); $oldtitle = get_content_tag('t', $content, 'Untitled');