Ticket #5331 (closed defect: duplicate)
Bug in special columns "report"
| Reported by: | marcio.skrabe@… | Owned by: | mgood |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | report system | Version: | 0.10.4 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
I created a report with a column to link another report, for example:
SELECT
priority,
count(*),
"24?priority="||priority as report
FROM ticket t
LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
WHERE status IN ('new', 'assigned', 'reopened')
group by priority
The exibition of report is OK, but the link to another report fail because the link is processed by trac with html encode.
<a href=".../report/24%3priority%3Dhigh">{24?priority=high}</a>
Thanks, Marcio.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


