Overview
Artifact ID: | 23d0a9a5b22e68e24b9ca593abd1fce8e93660d3 |
---|---|
Ticket: | 53ed528478dbc423562ddaa21cb032de78bad806
Bad href in tkthistory_page |
User & Date: | anonymous 2011-06-23 13:45:19 |
Changes
- comment changed to:
In tkthistory webpage bad href for submenu element "Check-ins", symbol '?' is used instead of '&': <verbatim> /* ** WEBPAGE: tkthistory ** URL: /tkthistory?name=TICKETUUID ** ** Show the complete change history for a single ticket */ void tkthistory_page(void){ Stmt q; char *zTitle; const char *zUuid; int tagid; login_check_credentials(); if( !g.okHistory || !g.okRdTkt ){ login_needed(); return; } zUuid = PD("name",""); zTitle = mprintf("History Of Ticket %h", zUuid); style_submenu_element("Status", "Status", "%s/info/%s", g.zTop, zUuid); style_submenu_element("Check-ins", "Check-ins", "%s/tkttimeline?name=%s?y=ci", g.zTop, zUuid); </verbatim> Must be <verbatim> style_submenu_element("Check-ins", "Check-ins", "%s/tkttimeline?name=%s&y=ci", g.zTop, zUuid); </verbatim>
- foundin changed to: "[081a29c0b7]"
- private_contact changed to: "ed685438f367f4147cdb8507d634250f1fbc14d6"
- severity changed to: "Minor"
- status changed to: "Open"
- title changed to: "Bad href in tkthistory_page"
- type changed to: "Code_Defect"