From 861441ed31a080a41dd2bfb418c03fc318d3f16e Mon Sep 17 00:00:00 2001 From: Rys Sommefeldt Date: Mon, 1 Aug 2016 15:49:43 +0100 Subject: Display priority changes in board view for inverted priority ranges Similar to allowing update of priorities when `priority_end` is greater than `priority_start`, to support inverted priority ranges, allow that change to propagate into `formatPriority` and display in the board view. --- app/Helper/TaskHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Helper') diff --git a/app/Helper/TaskHelper.php b/app/Helper/TaskHelper.php index 84730010..7722f4cc 100644 --- a/app/Helper/TaskHelper.php +++ b/app/Helper/TaskHelper.php @@ -228,7 +228,7 @@ class TaskHelper extends Base { $html = ''; - if ($project['priority_end'] > $project['priority_start']) { + if ($project['priority_end'] != $project['priority_start']) { $html .= ''; $html .= $task['priority'] >= 0 ? 'P'.$task['priority'] : '-P'.abs($task['priority']); $html .= ''; -- cgit v1.2.3