" <th><a href=\"?sort=out\">Out</a></th>\n"
" <th><a href=\"?sort=total\">Total</a></th>\n");
if (want_lastseen) str_append(buf,
- " <th>Last seen</th>\n");
+ " <th><a href=\"?sort=lastseen\">Last seen</a></th>\n");
str_append(buf,
"</tr>\n");
}
else if (strcmp(qs_sort, "total") == 0) sort = TOTAL;
else if (strcmp(qs_sort, "in") == 0) sort = IN;
else if (strcmp(qs_sort, "out") == 0) sort = OUT;
+ else if (strcmp(qs_sort, "lastseen") == 0) sort = LASTSEEN;
else {
str_append(buf, "Error: invalid value for \"sort\".\n");
goto done;