diff options
Diffstat (limited to 'htroot/js')
| -rw-r--r-- | htroot/js/yacysort.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/htroot/js/yacysort.js b/htroot/js/yacysort.js index d3769c225..e2d9bd835 100644 --- a/htroot/js/yacysort.js +++ b/htroot/js/yacysort.js @@ -327,9 +327,14 @@ var updateSidebar = function() { */ var processLatestInfo = function(latestInfo) { if (latestInfo.feedRunning) { - $.get("yacysearchlatestinfo.json", { - eventID : theEventID - }, processItem); + $.get( + "yacysearchitem.html", + { + eventID : theEventID, + item: itemCount + }, + processItem + ); } else { fetchingResults = false; } |
