comparison src/global/web/RootForums.jtp @ 53:56accc959f8c

remove SORT_BY_VALUE
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 06 Jul 2021 20:19:14 -0600
parents 7ecd1a4ef557
children
comparison
equal deleted inserted replaced
52:7df8ec497281 53:56accc959f8c
49 49
50 IndexSearcher searcher; 50 IndexSearcher searcher;
51 TopDocs hits; 51 TopDocs hits;
52 try { 52 try {
53 searcher = new IndexSearcher(Site.dir()); 53 searcher = new IndexSearcher(Site.dir());
54 hits = searcher.search( Index.query, iRec+ROWS_PER_PAGE, Site.SORT_BY_VALUE ); 54 hits = searcher.search( Index.query, iRec+ROWS_PER_PAGE, Site.SORT_BY_ACTIVITY );
55 } catch(IOException e) { 55 } catch(IOException e) {
56 throw new RuntimeException(e); 56 throw new RuntimeException(e);
57 } 57 }
58 try { 58 try {
59 HtmlViewUtils.PagingPath pagingPath = new HtmlViewUtils.PagingPath() { 59 HtmlViewUtils.PagingPath pagingPath = new HtmlViewUtils.PagingPath() {