summaryrefslogtreecommitdiff
path: root/app/Model
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-08-17 09:43:57 -0700
committerFrédéric Guillot <fred@kanboard.net>2014-08-17 09:43:57 -0700
commiteb76e1e530627eae34c74f0db3ed33d9a0da6810 (patch)
treefb90ae9e1a2977b0f2ab5feef706949aebfc50fc /app/Model
parent44e91721b0edec28b4e37d3c6b8847854c108233 (diff)
Highlight recently modified tasks on board (pull-request #201)
Diffstat (limited to 'app/Model')
-rw-r--r--app/Model/Task.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Model/Task.php b/app/Model/Task.php
index 0753c57d..09c77573 100644
--- a/app/Model/Task.php
+++ b/app/Model/Task.php
@@ -387,6 +387,7 @@ class Task extends Base
// Prepare data
$this->prepare($values);
$values['date_creation'] = time();
+ $values['date_modification'] = $values['date_creation'];
$values['position'] = $this->countByColumnId($values['project_id'], $values['column_id']);
// Save task
@@ -426,9 +427,13 @@ class Task extends Base
// Prepare data
$this->prepare($values);
$updated_task = $values;
- $updated_task['date_modification'] = time();
unset($updated_task['id']);
+ // We update the modification date only for the selected task to highlight recent moves
+ if ($trigger_events) {
+ $updated_task['date_modification'] = time();
+ }
+
$result = $this->db->table(self::TABLE)->eq('id', $values['id'])->update($updated_task);
// Trigger events