Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Silence const warning (GCC 8.1.1) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
83288757e5c0c2f04332c105e5aebb0b |
User & Date: | andygoth 2018-07-14 16:22:23.908 |
Context
2018-07-14
| ||
16:22 | Add missing option to diff option summary ... (check-in: 9b733276 user: andygoth tags: trunk) | |
16:22 | Silence const warning (GCC 8.1.1) ... (check-in: 83288757 user: andygoth tags: trunk) | |
15:12 | Update the built-in SQLite to the lastest 3.25.0 alpha version due to improved error message processing in that version. 3.25.0 also includes support for window functions, but we do not (yet) use that feature in Fossil. ... (check-in: d66f3224 user: drh tags: trunk) | |
Changes
Changes to src/webmail.c.
︙ | ︙ | |||
481 482 483 484 485 486 487 | blob_append_sql(&sql, " WHERE euser=%Q", g.zLogin); } blob_append_sql(&sql, " ORDER BY edate DESC limit 50"); db_prepare_blob(&q, &sql); blob_reset(&sql); @ <ol> while( db_step(&q)==SQLITE_ROW ){ | | | 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | blob_append_sql(&sql, " WHERE euser=%Q", g.zLogin); } blob_append_sql(&sql, " ORDER BY edate DESC limit 50"); db_prepare_blob(&q, &sql); blob_reset(&sql); @ <ol> while( db_step(&q)==SQLITE_ROW ){ const char *zId = db_column_text(&q,4); const char *zFrom = db_column_text(&q, 0); const char *zDate = db_column_text(&q, 1); const char *zSubject = db_column_text(&q, 3); @ <li> if( showAll ){ const char *zTo = db_column_text(&q,5); @ <a href="%s(url_render(&url,"user",zTo,0,0))">%h(zTo)</a>: |
︙ | ︙ |