Check-in by ben on 2026-03-13 15:52:34 Remove stray digit 1 in search pagination. This was the "item type" digit. It should have been removed when i added the item() helper function in commit [ce71322300] INSERTED DELETED 1 1 src/search.m4 1 1 TOTAL over 1 changed file Index: src/search.m4 ================================================================== --- src/search.m4 +++ src/search.m4 @@ -228,11 +228,11 @@ item(out, "1", label, sel, server, port) } # only show "next page" if the current page is completely full if (count == rows) { - label = sprintf("1[>>] Page %d", page + 1) + label = sprintf("[>>] Page %d", page + 1) sel = sprintf("%s/search?%s/page%d/rows%d/%s", cgipath, search, page + 1, rows, sort_param) item(out, "1", label, sel, server, port) }