Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix /timeline so that it works with only RdForum permission. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | forum-v2 |
Files: | files | file ages | folders |
SHA3-256: |
327c51b4230e22e0557cf03435b023b8 |
User & Date: | drh 2018-07-28 13:36:52.212 |
Context
2018-07-30
| ||
13:34 | Merge backoffice enhancements from trunk. ... (check-in: bb50f0dc user: drh tags: forum-v2) | |
2018-07-28
| ||
13:36 | Fix /timeline so that it works with only RdForum permission. ... (check-in: 327c51b4 user: drh tags: forum-v2) | |
2018-07-27
| ||
13:52 | Separate /forumpost and /forumthread pages. ... (check-in: 2dfb8873 user: drh tags: forum-v2) | |
Changes
Changes to src/timeline.c.
︙ | ︙ | |||
1479 1480 1481 1482 1483 1484 1485 | /* To view the timeline, must have permission to read project data. */ pd_rid = name_to_typed_rid(P("dp"),"ci"); if( pd_rid ){ p_rid = d_rid = pd_rid; } login_check_credentials(); | | | 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 | /* To view the timeline, must have permission to read project data. */ pd_rid = name_to_typed_rid(P("dp"),"ci"); if( pd_rid ){ p_rid = d_rid = pd_rid; } login_check_credentials(); if( (!g.perm.Read && !g.perm.RdTkt && !g.perm.RdWiki && !g.perm.RdForum) || (bisectOnly && !g.perm.Setup) ){ login_needed(g.anon.Read && g.anon.RdTkt && g.anon.RdWiki); return; } cookie_read_parameter("y","y"); zType = P("y"); |
︙ | ︙ |