I'm using trac 0.11.
I've installed the requirement XmlRpcPlugin, and activated that component in my trac.ini.
The log file is not spitting out any errors for this.
But when I run my custom query
SELECT p.value AS __color__,
id AS ticket, summary, component, version, milestone, t.type AS type,
owner, status,
time AS created,
changetime AS _changetime, description AS _description,
reporter AS _reporter,
ifnull (tc.value,'') as Hrs
FROM ticket t
LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
LEFT JOIN ticket_custom tc ON tc.ticket = t.id and tc.name = 'estimatedhours'
WHERE status <> 'closed'
ORDER BY CAST(p.value AS int), milestone, t.type, time
I can't seem to be able to edit the hours that come up in the query result page.
Any help would be appreciated.
Thanks.