summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-27 17:23:27 +0100
committerAndrew Dolgov <[email protected]>2005-11-27 17:23:27 +0100
commit0f172fff41ae9c9499a1ebc0defb72af1ea6cbe9 (patch)
treee0602d72848ca905c0ad305bc1cc279f736efc69 /backend.php
parent2e85e07be866aca2b03ce07c3253e3868c4c7c63 (diff)
headline list display touch-ups
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 554026963..6129a17c6 100644
--- a/backend.php
+++ b/backend.php
@@ -1065,13 +1065,20 @@
print "<td class='hlFeed'>
<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
} else {
- print "<td class='hlContent'>$content_link";
+ print "<td class='hlContent'>";
+
+ print "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
+ $line["title"];
+
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
+
$content_preview = truncate_string(strip_tags($line["content_preview"]),
101);
-
+
print "<span class=\"contentPreview\"> - $content_preview</span>";
}
+
+ print "</a>";
print "</td>";
}