Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | * Fixed security bug in ticket reports, you previously had to have Check-out security to view a ticket report, you now have to have "r" (Read-tkt) to view ticket reports. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | jeremy_c-timeline |
| Files: | files | file ages | folders |
| SHA1: |
6ee7316567a60422d1bb66edd9b883ee |
| User & Date: | jeremy_c 2009-12-31 14:49:02.000 |
Context
|
2009-12-31
| ||
| 14:49 | Fixed minor spelling error ... (check-in: efdad08182 user: jeremy_c tags: jeremy_c-timeline) | |
| 14:49 | * Fixed security bug in ticket reports, you previously had to have Check-out security to view a ticket report, you now have to have "r" (Read-tkt) to view ticket reports. ... (check-in: 6ee7316567 user: jeremy_c tags: jeremy_c-timeline) | |
| 04:42 | [886c302b3f] Added documentation for <nowiki>[#anchor]</nowiki> style links ... (check-in: dddc514053 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); */
|
| ︙ | ︙ |