summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-30 05:05:43 +0100
committerAndrew Dolgov <[email protected]>2006-08-30 05:05:43 +0100
commit7a4dd799278bedb24f4ef3935b382d1cac6bb629 (patch)
tree80b44836615b34638a887efcc94954b04dd32dc3 /backend.php
parenta753538d06e7e2b3abe1c88c675eb8aa31b5e176 (diff)
some feed browser detail improvements
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend.php b/backend.php
index 27351c42d..77ef03cc1 100644
--- a/backend.php
+++ b/backend.php
@@ -3753,15 +3753,15 @@
$last_updated = date($short_date, strtotime($last_updated));
}
- print "Site: <a href='$site_url'>$site_url</a> ".
- "(<a href='$feed_url'>feed</a>), ".
+ print "Site: <a target=\"_new\" href='$site_url'>$site_url</a> ".
+ "(<a target=\"_new\" href='$feed_url'>feed</a>), ".
"Last updated: $last_updated";
print "</div>";
$result = db_query($link, "SELECT
ttrss_entries.title,
- content,
+ content,link,
substring(date_entered,1,19) as date_entered,
substring(updated,1,19) as updated
FROM ttrss_entries,ttrss_user_entries
@@ -3783,7 +3783,7 @@
$entry_dt = date($short_date, strtotime($line["updated"]));
}
- print "<li>" . $line["title"] .
+ print "<li><a target=\"_new\" href=\"" . $line["link"] . "\">" . $line["title"] . "</a>" .
"&nbsp;<span class=\"insensitive\">($entry_dt)</span></li>";
}
print "</ul></div>";