diff --git a/ChangeLog b/ChangeLog
index 948bd2bdf..a9f641124 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@ New features:
Bug fixes:
* Wrong template name for subtasks tooltip due to previous refactoring
+* Fix broken url for closed tasks in project view
Version 1.0.17
--------------
diff --git a/app/Template/project/show.php b/app/Template/project/show.php
index 969dda179..d8d6de8d3 100644
--- a/app/Template/project/show.php
+++ b/app/Template/project/show.php
@@ -23,11 +23,11 @@
0): ?>
0): ?>
-
= $this->url->link(t('%d tasks on the board', $stats['nb_active_tasks']), 'board', 'show', array('project_id' => $project['id'])) ?>
+ = $this->url->link(t('%d tasks on the board', $stats['nb_active_tasks']), 'board', 'show', array('project_id' => $project['id'], 'search' => 'status:open')) ?>
0): ?>
- = $this->url->link(t('%d closed tasks', $stats['nb_inactive_tasks']), 'project', 'tasks', array('project_id' => $project['id'])) ?>
+ = $this->url->link(t('%d closed tasks', $stats['nb_inactive_tasks']), 'listing', 'show', array('project_id' => $project['id'], 'search' => 'status:closed')) ?>
= t('%d tasks in total', $stats['nb_tasks']) ?>
diff --git a/docs/closing-tasks.markdown b/docs/closing-tasks.markdown
index 7462b6838..235387a97 100644
--- a/docs/closing-tasks.markdown
+++ b/docs/closing-tasks.markdown
@@ -1,7 +1,9 @@
Closing tasks
=============
-When a task is closed, they are hidden from the board. However, you can always access to the list of closed tasks from the board menu **Board > Actions > Completed tasks**.
+When a task is closed, they are hidden from the board.
+
+However, you can always access to the list of closed tasks by using the query **status:closed** in any search form or simply choose **Closed tasks** from the filter dropdown.
There are two different way to close a task, from the task dropdown menu on the board: