Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove unused variable after merge of check-in-edit changes. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d17dc8f220689edc46a846afacb6df20 |
User & Date: | andybradford 2015-08-12 05:39:28.110 |
Context
2015-08-13
| ||
18:41 | Fix a faulty assert() in the search blob_append(). ... (check-in: 915d6193 user: drh tags: trunk) | |
2015-08-12
| ||
05:39 | Remove unused variable after merge of check-in-edit changes. ... (check-in: d17dc8f2 user: andybradford tags: trunk) | |
04:51 | Fix a harmless compiler warning. ... (check-in: c64989d5 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
︙ | ︙ | |||
2475 2476 2477 2478 2479 2480 2481 | zNewBrFlag = P("newbr") ? " checked" : ""; zNewBranch = PDT("brname",""); zCloseFlag = P("close") ? " checked" : ""; zHideFlag = P("hide") ? " checked" : ""; if( P("apply") ){ Blob ctrl; char *zNow; | < | 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 | zNewBrFlag = P("newbr") ? " checked" : ""; zNewBranch = PDT("brname",""); zCloseFlag = P("close") ? " checked" : ""; zHideFlag = P("hide") ? " checked" : ""; if( P("apply") ){ Blob ctrl; char *zNow; login_verify_csrf_secret(); blob_zero(&ctrl); zNow = date_in_standard_format(zChngTime ? zChngTime : "now"); blob_appendf(&ctrl, "D %s\n", zNow); init_newtags(); if( zNewColor[0] |
︙ | ︙ |