Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | On the /stat page, change the name of "Alerts:" to "Pending Alerts:". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6f34395cc815b1104267e23d3e4d4c60 |
User & Date: | drh 2018-06-25 20:59:26.864 |
Context
2018-06-25
| ||
22:01 | Make sure the subscriber table is not synced unless the client has appropriate permissions. ... (check-in: 7f0c7fcf user: drh tags: trunk) | |
20:59 | On the /stat page, change the name of "Alerts:" to "Pending Alerts:". ... (check-in: 6f34395c user: drh tags: trunk) | |
20:56 | Report on the email notification setup and status in the /stat page for administrators. ... (check-in: 4ef59090 user: drh tags: trunk) | |
Changes
Changes to src/stat.c.
︙ | ︙ | |||
236 237 238 239 240 241 242 | }else{ @ Off } @ </td></tr> nPend = db_int(0,"SELECT count(*) FROM pending_alert WHERE NOT sentSep"); nDPend = db_int(0,"SELECT count(*) FROM pending_alert" " WHERE NOT sentDigest"); | | | 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | }else{ @ Off } @ </td></tr> nPend = db_int(0,"SELECT count(*) FROM pending_alert WHERE NOT sentSep"); nDPend = db_int(0,"SELECT count(*) FROM pending_alert" " WHERE NOT sentDigest"); @ <tr><th>Pending Alerts:</th><td> @ %,d(nPend) normal, %,d(nDPend) digest @ </td></tr> @ <tr><th>Subscribers:</th><td> nSub = db_int(0, "SELECT count(*) FROM subscriber"); nASub = db_int(0, "SELECT count(*) FROM subscriber WHERE sverified" " AND NOT sdonotcall AND length(ssub)>1"); @ %,d(nASub) active, %,d(nSub) total |
︙ | ︙ |