Hi Everyone,
Technology question....A friend of mine keeps getting messages about me and 
another person that are completely baseless.  Items from conversations we have 
had are sent to my friend within an hour after they happen.  I talk to no one 
about anything to do with my friend. Does anybody know how this is happening?
Thanks,
Bruce
 

    On Tuesday, November 21, 2017, 8:30:57 AM EST, <bytevolc...@safe-mail.net> 
wrote:  
 
 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
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
  
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to