From 8486455e0d4159f943e4e39106c811d52b8bda01 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Mon, 6 Nov 2023 10:50:31 +0800 Subject: [PATCH] * Fix bug of sorting dtable in my::todo. --- module/my/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/my/control.php b/module/my/control.php index eda42710ab..ca8ce56829 100755 --- a/module/my/control.php +++ b/module/my/control.php @@ -323,7 +323,7 @@ EOF; $this->view->doingCount = $doingCount; $this->view->importFuture = ($type != 'today'); $this->view->pager = $pager; - $this->view->orderBy = $sort; + $this->view->orderBy = $orderBy; $this->display(); }