From d70efee9406972cf879d51cceb660e47d8c26574 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 5 Jan 2021 16:38:45 +0800 Subject: [PATCH] fix sort --- MTrackWeb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MTrackWeb.php b/MTrackWeb.php index d73c7ed2..b78a4d5b 100644 --- a/MTrackWeb.php +++ b/MTrackWeb.php @@ -169,7 +169,7 @@ class MTrackWeb extends HTML_FlexyFramework_Page */ // $pd->whereAdd("role != ''"); - $p->orderBy('Projects.name ASC'); + $p->orderBy('core_project.name ASC'); unset($p->client_id); // default projects serach enforces this.. $ar = $p->fetchAll('id', 'name'); } -- 2.39.2