From 4de98fce8cf76e3802407201e45d3d652aeca23e Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Wed, 24 Jan 2001 20:23:47 +0000
Subject: [PATCH] - fixed bug in story.php   Unc: never mind about the removed
 link to $theme->article()

---
 story.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/story.php b/story.php
index 1f3df7d9468f..648cc5b921ae 100644
--- a/story.php
+++ b/story.php
@@ -8,7 +8,7 @@ function story_render($id, $cid) {
   $result = db_query("SELECT s.*, u.userid FROM stories s LEFT JOIN users u ON s.author = u.id WHERE s.status != 0 AND s.id = $id");
 
   if ($story = db_fetch_object($result)) {
-    $theme->article($story);
+    $theme->article($story, "[ <A HREF=\"story.php?id=$id\">reply to this story</A> ]");
     comment_render($id, $cid);
   }
   else {
-- 
GitLab