Commit b049f247 authored by Jun(俊) Zheng(郑)'s avatar Jun(俊) Zheng(郑) Committed by Jingsheng Wang
Browse files

Issue #1793662 by Jerenus: Fixed view all project cases link.

parent fcad6a82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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')));