[geeklog-cvs] geeklog: The {start_storylink_anchortag} variable in the story t...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Oct 4 18:26:28 EDT 2008


details:   http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/8a105009ba6e
changeset: 6425:8a105009ba6e
user:      Dirk Haun <dirk at haun-online.de>
date:      Sun Oct 05 00:26:16 2008 +0200
description:
The {start_storylink_anchortag} variable in the story templates was missing a '>'

diffstat:

2 files changed, 3 insertions(+), 1 deletion(-)
public_html/docs/history |    2 ++
system/lib-story.php     |    2 +-

diffs (24 lines):

diff -r 649d19f400b6 -r 8a105009ba6e public_html/docs/history
--- a/public_html/docs/history	Sat Oct 04 21:04:23 2008 +0200
+++ b/public_html/docs/history	Sun Oct 05 00:26:16 2008 +0200
@@ -3,6 +3,8 @@
 ??? ??, 2008 (1.5.2)
 ------------
 
+- The {start_storylink_anchortag} variable in the story templates was missing
+  a '>' (reported by Michael Brusletten) [Dirk]
 - Display a "Service" column in the Admin's list of users when remote auth is
   activated [Dirk]
 - Introduced new function COM_showMessageText to display a free-form text in a
diff -r 649d19f400b6 -r 8a105009ba6e system/lib-story.php
--- a/system/lib-story.php	Sat Oct 04 21:04:23 2008 +0200
+++ b/system/lib-story.php	Sun Oct 05 00:26:16 2008 +0200
@@ -221,7 +221,7 @@
             $attr_array['rel'] = 'bookmark';
         }
         $article->set_var('start_storylink_anchortag',
-                          '<a href="' . $articleUrl . '"' . $attributes);
+                          '<a href="' . $articleUrl . '"' . $attributes . '>');
         $article->set_var('end_storylink_anchortag', '</a>');
         $article->set_var('story_title_link',
             COM_createLink(



More information about the geeklog-cvs mailing list