From cf9e5de39590860240ab5c716190ca20fcdd696b Mon Sep 17 00:00:00 2001 From: sb0001 <48289594+sb0001@users.noreply.github.com> Date: Sat, 9 Dec 2023 01:26:26 +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');