URI: 
       refs: fix table id for tags - stagit-gopher - A git gopher frontend. (mirror)
  HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
   DIR commit e51ec34dbe4bce95f1677db9a4f32dfbe0ad3432
   DIR parent 48a09a0f100008014e1785e38c31e754bd761db4
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Tue,  5 Jan 2016 21:42:51 +0100
       
       refs: fix table id for tags
       
       Diffstat:
         M stagit.c                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/stagit.c b/stagit.c
       @@ -891,7 +891,7 @@ writetags(FILE *fp)
                qsort(tagnames.strings, tagnames.count, sizeof(char *),
                      (int (*)(const void *, const void *))&tagcompare);
        
       -        fputs("<h2>Tags</h2><table id=\"branches\"><thead>\n<tr><td>Tag</td>"
       +        fputs("<h2>Tags</h2><table id=\"tags\"><thead>\n<tr><td>Tag</td>"
                      "<td>Age</td><td>Commit message</td>"
                      "<td>Author</td><td>Files</td><td class=\"num\">+</td>"
                      "<td class=\"num\">-</td></tr>\n</thead><tbody>\n", fp);