diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-08-20 21:41:55 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-08-20 21:41:55 +0200 |
commit | 1a1a0c72aa34679d6eac458b0be8fca084fec26c (patch) | |
tree | 8905dd6765f0a4cd3a5397e56c51afa2795dfc18 | |
parent | bf5344ce04b8f37b658f481a09f1742f84c182a3 (diff) | |
download | cacert-devel-1a1a0c72aa34679d6eac458b0be8fca084fec26c.tar.gz cacert-devel-1a1a0c72aa34679d6eac458b0be8fca084fec26c.tar.xz cacert-devel-1a1a0c72aa34679d6eac458b0be8fca084fec26c.zip |
bug-1190: improve links for mobile devices
-rw-r--r-- | pages/index/0.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pages/index/0.php b/pages/index/0.php index db46673..c369635 100644 --- a/pages/index/0.php +++ b/pages/index/0.php @@ -61,9 +61,8 @@ // as it is in the RSS feed) we might inject harmful markup $description = recode_string("UTF8..html", $description); - printf("<h3> %s </h3>\n", $title); - printf("<p> %s </p>\n", $description); - printf("<p>[<a href=\"%s\"> %s </a> ] </p>\n\n", $link,_("Full Story")); + printf("<h3><a href=\"%s\">%s</a></h3>\n", $link, $title); + printf("<p>%s</p>\n", $description); $title = ''; $description = ''; |