In setup_ulist web page, the "Last Change" column will never be
populated because of an off-by-one error.
Index: src/setup.c
==================================================================
--- src/setup.c
+++ src/setup.c
@@ -178,11 +178,11 @@
);
while( db_step(&s)==SQLITE_ROW ){
int uid = db_column_int(&s, 0);
const char *zLogin = db_column_text(&s, 1);
const char *zCap = db_column_text(&s, 2);
- const char *zDate = db_column_text(&s, 4);
+ const char *zDate = db_column_text(&s, 3);
@ <tr>
@ <td><a href='setup_uedit?id=%d(uid)'>%d(uid)</a>
@ <td><a href='setup_uedit?id=%d(uid)'>%h(zLogin)</a>
@ <td>%h(zCap)
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users