From b1dfaa21bb46dd6e5e3a56675d65ee93e9f9316a Mon Sep 17 00:00:00 2001 From: lichengjun Date: Fri, 17 Sep 2021 07:14:30 +0000 Subject: [PATCH] * Fix Bug #15200. --- module/todo/view/view.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/todo/view/view.html.php b/module/todo/view/view.html.php index 9adb6a2d3f..3f8237224e 100644 --- a/module/todo/view/view.html.php +++ b/module/todo/view/view.html.php @@ -49,7 +49,7 @@ session->todoList) { - $browseLink = $this->session->todoList; + $browseLink = empty($todo->deleted) ? $this->session->todoList : $this->createLink('action', 'trash'); } elseif($todo->account == $app->user->account) {