summaryrefslogtreecommitdiff
path: root/modules/pref-feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 16:36:35 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 16:36:35 +0100
commita95da1368ec6ed8e7a6e26c831cf160b71440766 (patch)
tree4ffd304c61256a690dead14dbbe4f76c20a8540f /modules/pref-feeds.php
parentc239b26b3a199a92ee64ee58cff118283fa9495e (diff)
rework entry display for prefs, filters, labels and users
Diffstat (limited to 'modules/pref-feeds.php')
-rw-r--r--modules/pref-feeds.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index e52e54c8a..e4f6b60d6 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -1052,8 +1052,10 @@
print "<td class='feedSelect'><input onclick='toggleSelectPrefRow(this, \"feed\");'
type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
+ $onclick = "onclick='editFeed($feed_id)' title='".__('Click to edit')."'";
+
if (get_pref($link, 'ENABLE_FEED_ICONS')) {
- print "<td class='feedIcon'>$feed_icon</td>";
+ print "<td $onclick class='feedIcon'>$feed_icon</td>";
}
if ($hidden) {
@@ -1074,16 +1076,14 @@
$parent_title)</span>";
}
- print "<td><a href=\"javascript:editFeed($feed_id);\">" .
- "$edit_title $parent_title" . "</a></td>";
+ print "<td $onclick>" . "$edit_title $parent_title" . "</td>";
if ($show_last_article_info) {
- print "<td align='right'><a href=\"javascript:editFeed($feed_id);\">" .
- "$last_article</a></td>";
+ print "<td align='right' $onclick>" .
+ "$last_article</td>";
}
- print "<td align='right'><a href=\"javascript:editFeed($feed_id);\">" .
- "$last_updated</a></td>";
+ print "<td $onclick align='right'>$last_updated</td>";
print "</tr>";