diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-16 13:37:32 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-16 13:37:32 +0000 |
commit | 2b0142580f9c5e0b9dc54d1e338e355b235bb844 (patch) | |
tree | e5128fc007811c52a15391ee773eaae3fdbecdae /app/views/reports/_simple.rhtml | |
parent | 236c735d08c097cfe1a7e5f5c52a9dd6711250aa (diff) | |
download | redmine-2b0142580f9c5e0b9dc54d1e338e355b235bb844.tar.gz redmine-2b0142580f9c5e0b9dc54d1e338e355b235bb844.zip |
"queries" branch merged
git-svn-id: http://redmine.rubyforge.org/svn/trunk@95 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/reports/_simple.rhtml')
-rw-r--r-- | app/views/reports/_simple.rhtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/reports/_simple.rhtml b/app/views/reports/_simple.rhtml index 3be1281c5..778b9cbde 100644 --- a/app/views/reports/_simple.rhtml +++ b/app/views/reports/_simple.rhtml @@ -18,17 +18,17 @@ :controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
"#{field_name}" => row.id,
- "status_id" => "O" %></td>
+ "status_id" => "o" %></td>
<td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 1 }),
:controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
"#{field_name}" => row.id,
- "status_id" => "C" %></td>
+ "status_id" => "c" %></td>
<td align="center"><%= link_to (aggregate data, { field_name => row.id }),
:controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
"#{field_name}" => row.id,
- "status_id" => "A" %></td>
+ "status_id" => "*" %></td>
<% end %>
</tr>
</table>
|