Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix harmless compiler warning. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a3691d767964e76d4bc5dbdb5ce16dff |
User & Date: | mistachkin 2015-12-02 20:18:42.845 |
Context
2015-12-03
| ||
15:07 | When markdown begins with a <h1> HTML element, consider the content of that element to be the title of the document. ... (check-in: cc7f4df4 user: drh tags: trunk) | |
08:36 | Crosslink clusters so that fossil test-clusters and test-describe-artifacts will be able to identify them correctly. ... (check-in: 81bdb687 user: andybradford tags: pending-review) | |
2015-12-02
| ||
20:23 | Experimental changes to deal with the reserved 12 characters (e.g. 'FILENAME.EXT') always needed for long directory names on Windows. ... (Closed-Leaf check-in: 6ebef28f user: mistachkin tags: pending-review) | |
20:18 | Fix harmless compiler warning. ... (check-in: a3691d76 user: mistachkin tags: trunk) | |
09:55 | Capitalize "Fossil" in the concepts.wiki document. ... (check-in: b63c4300 user: drh tags: trunk) | |
Changes
Changes to src/setup.c.
︙ | ︙ | |||
144 145 146 147 148 149 150 | ** WEBPAGE: setup_ulist ** ** Show a list of users. Clicking on any user jumps to the edit ** screen for that user. Requires Admin privileges. */ void setup_ulist(void){ Stmt s; | < | 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | ** WEBPAGE: setup_ulist ** ** Show a list of users. Clicking on any user jumps to the edit ** screen for that user. Requires Admin privileges. */ void setup_ulist(void){ Stmt s; login_check_credentials(); if( !g.perm.Admin ){ login_needed(0); return; } |
︙ | ︙ |