From da96f55295a00c74ac06446303ba5663ee648596 Mon Sep 17 00:00:00 2001
From: Jerenus <jun.zheng@insready.com>
Date: Wed, 27 Mar 2013 11:31:06 +0800
Subject: [PATCH] Issue #1793662 by Jerenus: Fixed view all project cases
 link.

---
 casetracker.module |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/casetracker.module b/casetracker.module
index d4e2314..8423b05 100755
--- a/casetracker.module
+++ b/casetracker.module
@@ -1078,7 +1078,7 @@ function theme_casetracker_project_summary($variables) {
     );
   }
   $operations = implode(' | ', $operations); // ready for printing in our Operations table cell - delimited by a pipe. nonstandard.
-  $rows[] = array(t('Operations:'), $operations . ' | ' . l(t('view all project cases'), 'casetracker', array('query' => array('destination' => 'keys=&pid=' . $project->nid))));
+  $rows[] = array(t('Operations:'), $operations . ' | ' . l(t('view all project cases'), 'casetracker', array('query' => array('destination' => '', 'keys' => '', 'pid' => $project->nid))));
 
   $output = '<div class="project">';
   $output .= theme('table', array('header' => NULL, 'rows' => $rows, 'attributes' => array('class' => 'summary')));
-- 
1.7.10.4

