]> git.wh0rd.org - tt-rss.git/blobdiff - classes/feeds.php
implement mail plugin using mailto: links; deprecate mail plugin
[tt-rss.git] / classes / feeds.php
index b33faa474a01e71d53230ba2dbd47307546a19a3..5fa51768c5027761bd50600a7db99b28ffe8e39c 100644 (file)
@@ -126,6 +126,11 @@ class Feeds extends Handler_Protected {
                                "</option>";
                }
 
+               if ($pluginhost->get_plugin("mailto")) {
+                       $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
+                               "</option>";
+               }
+
                $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
 
                $reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
@@ -539,7 +544,7 @@ class Feeds extends Handler_Protected {
                                                target=\"_blank\" href=\"".
                                                htmlspecialchars($line["link"])."\">".
                                                $line["title"] .
-                                               " <span class=\"titleAuthor\">$entry_author</span></a>";
+                                               " <span class=\"author\">$entry_author</span></a>";
 
                                        $reply['content'] .= $labels_str;