From 1d00d7071c86b792d4567eee663657c5f4ee4882 Mon Sep 17 00:00:00 2001 From: Frank Thommen Date: Mon, 8 Apr 2019 17:18:55 +0200 Subject: [PATCH] Made "status" colunm left-aligned like the others --- syntax/dolist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/dolist.php b/syntax/dolist.php index 26360c1..d5367ca 100644 --- a/syntax/dolist.php +++ b/syntax/dolist.php @@ -162,7 +162,7 @@ public function buildTasklistHTML(array $tasks, $hideUser, $hideCreator) $table .= implode(', ', $row['users']); $table .= ''; $table .= '' . hsc($row['date']) . ''; - $table .= ''; + $table .= ''; // task status icon... $image = ($row['status']) ? 'done.png' : 'undone.png';