Rename CommentModel::EVENT_REMOVE to CommentModel::EVENT_DELETE

This commit is contained in:
Frederic Guillot
2016-07-20 21:47:23 -04:00
parent 7b100cc57b
commit 3dd20c9c78
6 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
<p class="activity-title">
<?= e('%s removed a comment on the task %s',
$this->text->e($author),
$this->url->link(t('#%d', $task['id']), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']))
) ?>
<span class="activity-date"><?= $this->dt->datetime($date_creation) ?></span>
</p>
<div class="activity-description">
<p class="activity-task-title"><?= $this->text->e($task['title']) ?></p>
<div class="markdown"><?= $this->text->markdown($comment['comment']) ?></div>
</div>