summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-01-24 20:23:47 +0000
committerDries Buytaert <dries@buytaert.net>2001-01-24 20:23:47 +0000
commit4de98fce8cf76e3802407201e45d3d652aeca23e (patch)
treecb43b4c6143b142f45ee367a19a978363ae58a7a
parent0363ca0a4a254be30e0df91976ab2eac96072a11 (diff)
downloadbrdo-4de98fce8cf76e3802407201e45d3d652aeca23e.tar.gz
brdo-4de98fce8cf76e3802407201e45d3d652aeca23e.tar.bz2
- fixed bug in story.php
Unc: never mind about the removed link to $theme->article()
-rw-r--r--story.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/story.php b/story.php
index 1f3df7d94..648cc5b92 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 {