Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Ignore TAG_USER from tagxref if the user has been cancelled so Edited User is not displayed in the Check-in Overview. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
40bea3f546e84a5784c5de627ff412e7 |
| User & Date: | andybradford 2013-12-20 05:53:28.410 |
Context
|
2013-12-20
| ||
| 06:16 | Record recently added features in change log. Minor touch-up to previous logs. ... (check-in: b51ff64e25 user: andybradford tags: trunk) | |
| 05:53 | Ignore TAG_USER from tagxref if the user has been cancelled so Edited User is not displayed in the Check-in Overview. ... (check-in: 40bea3f546 user: andybradford tags: trunk) | |
|
2013-12-18
| ||
| 23:25 | Add another useful diagnostic message to the MSVC batch file. ... (check-in: 59400c7d75 user: mistachkin tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
522 523 524 525 526 527 528 |
const char *zDate;
const char *zOrigDate;
style_header(zTitle);
login_anonymous_available();
free(zTitle);
zEUser = db_text(0,
| | > | 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 |
const char *zDate;
const char *zOrigDate;
style_header(zTitle);
login_anonymous_available();
free(zTitle);
zEUser = db_text(0,
"SELECT value FROM tagxref"
" WHERE tagid=%d AND rid=%d AND tagtype>0",
TAG_USER, rid);
zEComment = db_text(0,
"SELECT value FROM tagxref WHERE tagid=%d AND rid=%d",
TAG_COMMENT, rid);
zUser = db_column_text(&q1, 2);
zComment = db_column_text(&q1, 3);
zDate = db_column_text(&q1,1);
|
| ︙ | ︙ |