Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix broken hyperlink on ticket history. Ticket [53ed528478dbc42]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
082c02a80cdcd38af03fc3d72af859a1 |
| User & Date: | drh 2011-06-29 11:23:16.500 |
References
|
2011-09-10
| ||
| 21:05 | • Fixed ticket [40f32e9733]: incorrect url for check-ins entry on ticket history menu plus 2 other changes ... (artifact: 88f873a9d6 user: dmitry) | |
Context
|
2011-06-29
| ||
| 17:10 | Simplify some the "name" parameter to the "artifact" URIs. ... (check-in: 5acc3e4cc4 user: drh tags: trunk) | |
| 11:23 | Fix broken hyperlink on ticket history. Ticket [53ed528478dbc42]. ... (check-in: 082c02a80c user: drh tags: trunk) | |
| 11:20 | Fix the fossil_strcmp() routine so that it compares strings in the correct order even if some of the characters have their high-order bits set. Ticket [5982aa506467d]. ... (check-in: f23e90da8a user: drh tags: trunk) | |
Changes
Changes to src/tkt.c.
| ︙ | ︙ | |||
729 730 731 732 733 734 735 |
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",
| | | 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 |
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);
style_submenu_element("Timeline", "Timeline",
"%s/tkttimeline?name=%s", g.zTop, zUuid);
style_header(zTitle);
free(zTitle);
tagid = db_int(0, "SELECT tagid FROM tag WHERE tagname GLOB 'tkt-%q*'",zUuid);
if( tagid==0 ){
|
| ︙ | ︙ |