Fix url /p/aaa/issues/status/open/

feature.wiki-default-page
William MARTIN 2011-10-04 21:45:23 +02:00
parent ac7a4c4aa5
commit 708b90fccd
1 changed files with 7 additions and 0 deletions

View File

@ -732,6 +732,13 @@ class IDF_Views_Issue
{
$prj = $request->project;
$status = $match[2];
if (mb_strtolower($status) == 'open') {
$url = Pluf_HTTP_URL_urlForView('IDF_Views_Issue::index',
array($prj->shortname));
return new Pluf_HTTP_Response_Redirect($url);
}
$title = sprintf(__('%s Closed Issues'), (string) $prj);
// Get stats about the issues
$open = $prj->getIssueCountByStatus('open');