Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a minor problem with the user capability summary display. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | forum-v2 |
Files: | files | file ages | folders |
SHA3-256: |
2cce85f4215611653255934292ecb1a8 |
User & Date: | drh 2018-07-31 10:30:28 |
Context
2018-07-31
| ||
13:08 | Wrap oversize text/plain wiki and tickets and technotes and forum messages. check-in: fa8ef257 user: drh tags: forum-v2 | |
10:30 | Fix a minor problem with the user capability summary display. check-in: 2cce85f4 user: drh tags: forum-v2 | |
04:18 | Add the email alerts configuration summary to the security audit page. check-in: a9e67fe6 user: drh tags: forum-v2 | |
Changes
Changes to src/capabilities.c.
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
eType = 1;
}else{
eType = 0;
}
@ <td class="%s(azClass[eType])">%s(azType[eType])</td>
/* Wiki */
if( sqlite3_strglob("*[asdfjlm]*",zCap)==0 ){
eType = 2;
}else if( sqlite3_strglob("*j*",zCap)==0 ){
eType = 1;
}else{
eType = 0;
}
@ <td class="%s(azClass[eType])">%s(azType[eType])</td>
|
| |
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
eType = 1;
}else{
eType = 0;
}
@ <td class="%s(azClass[eType])">%s(azType[eType])</td>
/* Wiki */
if( sqlite3_strglob("*[asdfklm]*",zCap)==0 ){
eType = 2;
}else if( sqlite3_strglob("*j*",zCap)==0 ){
eType = 1;
}else{
eType = 0;
}
@ <td class="%s(azClass[eType])">%s(azType[eType])</td>
|