From 80e965a904b1be824b4f294d238c0514e19888c1 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Wed, 8 Dec 2010 02:28:56 +0100 Subject: [PATCH] Forgot to add the model filter parameter to the timeline action which basically rendered the complete navigation useless. --- src/IDF/Views/Project.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Views/Project.php b/src/IDF/Views/Project.php index 0ebcf69..a59d0f6 100644 --- a/src/IDF/Views/Project.php +++ b/src/IDF/Views/Project.php @@ -147,7 +147,7 @@ class IDF_Views_Project array($prj->id)); $pag->sort_order = array('creation_dtime', 'ASC'); $pag->sort_reverse_order = array('creation_dtime'); - $pag->action = array('IDF_Views_Project::timeline', array($prj->shortname)); + $pag->action = array('IDF_Views_Project::timeline', array($prj->shortname, $model_filter)); $list_display = array( 'creation_dtime' => __('Age'), 'id' => __('Change'),