diff options
| author | okybaca <klokanek@eldar.cz> | 2023-08-28 13:01:45 +0200 |
|---|---|---|
| committer | okybaca <klokanek@eldar.cz> | 2023-08-28 13:01:45 +0200 |
| commit | 08b769f63a2d467c954c28f4bbd47627732d0071 (patch) | |
| tree | e7597fc68baecdf61380c5f8259fd3ce41817972 /htroot/js | |
| parent | 195bd2e444748d818c340cb02a88514c3a5a36e0 (diff) | |
modified crawl list so the URL links to external URL
Diffstat (limited to 'htroot/js')
| -rw-r--r-- | htroot/js/Crawler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htroot/js/Crawler.js b/htroot/js/Crawler.js index f66063ee4..c2f77404e 100644 --- a/htroot/js/Crawler.js +++ b/htroot/js/Crawler.js @@ -411,7 +411,7 @@ function showRSS(RSS) { if (doc != null) { if (crawllist_body.length > 100000) crawllist_body = ""; for (var i=0; i<RSS.items.length; i++) { - crawllist_body = "<tr class='TableCellLight'><td><a href='ViewFile.html?action=info&urlHash=" + RSS.items[i].guid.value + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].description + "</a></td><td><a href='ViewFile.html?action=info&urlHash=" + RSS.items[i].guid.value + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].link + "</a></td></tr>" + crawllist_body; + crawllist_body = "<tr class='TableCellLight'><td><a href='ViewFile.html?action=info&urlHash=" + RSS.items[i].guid.value + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].description + "</a></td><td><a href='" + RSS.items[i].link + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].link + "</a></td></tr>" + crawllist_body; } doc.innerHTML = crawllist_head + crawllist_body + crawllist_tail; } |
