Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed bug where the ticket report view page was checking the wrong security attribute (too secure) which was causing people who should be able to view ticket reports to not be able to view ticket reports. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5fc36e2faabf13e9c2c83aea5f18281b |
| User & Date: | jeremy_c 2010-01-13 09:58:09.000 |
Context
|
2010-01-14
| ||
| 15:34 | If a "merge" or "update" or "revert" fails, then automatically rollback any partial changes to the filesystem. Ticket [a9722a15d2]. ... (check-in: 7c3cb28d0f user: drh tags: trunk) | |
|
2010-01-13
| ||
| 10:10 | Fixed bug where /doc could only be read if the user had checkout security - <i>drh adds</i>: This is not a bug. Checkout permission prevents /doc from being used to "checkout" any version of any file. ... (Closed-Leaf check-in: acba194c0d user: jeremy_c tags: dead-end) | |
| 09:58 | Fixed bug where the ticket report view page was checking the wrong security attribute (too secure) which was causing people who should be able to view ticket reports to not be able to view ticket reports. ... (check-in: 5fc36e2faa user: jeremy_c tags: trunk) | |
| 09:35 | New option of 'wiki-use-html' which causes the wiki system to use HTML as it's markup language. i.e. do not interfeer with what was entered. ... (check-in: cf3809cc71 user: jeremy_c tags: trunk) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
871 872 873 874 875 876 877 | char *zClrKey; int tabs; Stmt q; char *zErr1 = 0; char *zErr2 = 0; login_check_credentials(); | | | 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 |
char *zClrKey;
int tabs;
Stmt q;
char *zErr1 = 0;
char *zErr2 = 0;
login_check_credentials();
if( !g.okRdTkt ){ login_needed(); return; }
rn = atoi(PD("rn","0"));
if( rn==0 ){
cgi_redirect("reportlist");
return;
}
tabs = P("tablist")!=0;
/* view_add_functions(tabs); */
|
| ︙ | ︙ |