Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the labels on email alerts for wiki edits and ticket changes, which were reversed. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a8856c6beba085f9bc2ea0690be6e664 |
User & Date: | drh 2018-11-30 21:08:26.463 |
Context
2018-11-30
| ||
21:24 | Typo fix ... (check-in: 91e8c121 user: wyoung tags: trunk) | |
21:08 | Fix the labels on email alerts for wiki edits and ticket changes, which were reversed. ... (check-in: a8856c6b user: drh tags: trunk) | |
13:07 | Allow the Admin user to modify the skin. ... (check-in: 257318c1 user: drh tags: trunk) | |
Changes
Changes to src/alerts.c.
︙ | ︙ | |||
2033 2034 2035 2036 2037 2038 2039 | p->type = db_column_text(&q, 3)[0]; p->needMod = db_column_int(&q, 4); p->zFromName = 0; p->pNext = 0; switch( p->type ){ case 'c': zType = "Check-In"; break; case 'f': zType = "Forum post"; break; | | | | 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 | p->type = db_column_text(&q, 3)[0]; p->needMod = db_column_int(&q, 4); p->zFromName = 0; p->pNext = 0; switch( p->type ){ case 'c': zType = "Check-In"; break; case 'f': zType = "Forum post"; break; case 't': zType = "Ticket Change"; break; case 'w': zType = "Wiki Edit"; break; } blob_init(&p->hdr, 0, 0); blob_init(&p->txt, 0, 0); blob_appendf(&p->txt,"== %s %s ==\n%s\n%s/info/%.20s\n", db_column_text(&q,1), zType, db_column_text(&q,2), |
︙ | ︙ |