]> git.wh0rd.org Git - tt-rss.git/commitdiff
mobile: article title in view mode is a link to original article (closes #80)
authorAndrew Dolgov <fox@madoka.spb.ru>
Sat, 24 Jun 2006 15:05:08 +0000 (16:05 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Sat, 24 Jun 2006 15:05:08 +0000 (16:05 +0100)
mobile/functions.php

index 845962c3a249b6d337aa3c044c73012d6bc3a872..0339b56f8e64bc155b379c689b744ddae5200586 100644 (file)
 
                        $feed_link = "<a href=\"tt-rss.php?go=vf&id=$feed_id\">Feed</a>";
                        
-                       print truncate_string($line["title"], 30);
+                       print "<a href=\"" . $line["link"] . "\">" . 
+                               truncate_string($line["title"], 30) . "</a>";
                        print " <span id=\"headingAddon\">$parsed_updated ($feed_link)</span>";
                        print "</div>";