(Trac-Users might be a more appropriate list for this.) > Hi all, > I am new to the system and need some guidance. > I added a new report with this text as the query: > > [[TicketQuery(format=table,order=due_date,col=id|ticket|summary|ticket_status|priority|owner|time|modified|due_date|reporter),group=ticket_status]] > > The compiler returns an error: > > unrecognized token: "]" > > Any idea why this isn't working? > Do I need to enable something in the configuration?
I think you need to move the closing parenthesis from after "reporter" to after "ticket_status". [[TicketQuery(format=table,order=due_date,col=id|ticket|summary|ticket_status|priority|owner|time|modified|due_date|reporter,group=ticket_status)]] Though I'm unsure of the use of `group` in `TicketQuery` and you may mean "status", not "ticket_status". -- You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en.
