summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-09 09:23:48 +0100
committerAndrew Dolgov <[email protected]>2007-08-09 09:23:48 +0100
commite2ccbfab0a8e734df65ad89f817e0b8e10a3481c (patch)
treefe79715a209972961adaffc1cd1fa1781dc30e42 /functions.php
parent82a7286215539cde449988979098034d77c36178 (diff)
CDM tweaks, mark article as unread when using 'v' in CDM
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php24
1 files changed, 15 insertions, 9 deletions
diff --git a/functions.php b/functions.php
index 7ca93956d..6a55bdc8e 100644
--- a/functions.php
+++ b/functions.php
@@ -3943,13 +3943,16 @@
print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div><br clear=\"all\">";
- print "<div class=\"cdmFooter\">";
+ print "<div class=\"cdmFooter\"><span class='s0'>";
- print "$marked_pic";
+ /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
- print "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
+ print __("Select:").
+ " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
+ print "</span><span class='s1'>$marked_pic</span> ";
+
$tags = get_article_tags($link, $id);
$tags_str = "";
@@ -3962,16 +3965,19 @@
$tags_str = preg_replace("/, $/", "", $tags_str);
if ($tags_str == "") $tags_str = "no tags";
-
- print " $tags_str <a title=\"Edit tags for this article\"
+
+// print "<img src='images/tag.png' class='markedPic'>";
+
+ print "<span class='s1'>Tags: $tags_str <a title=\"Edit tags for this article\"
href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
- print "</div>";
+ print "</span>";
-# print "<div align=\"center\"><a class=\"cdmToggleLink\"
-# href=\"javascript:toggleUnread($id)\">
-# Toggle unread</a></div>";
+ print "<span class='s2'>Toggle: <a class=\"cdmToggleLink\"
+ href=\"javascript:toggleUnread($id)\">
+ Unread</a></span>";
+ print "</div>";
print "</div>";
}