summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-01-22 21:10:13 +0000
committerDries Buytaert <dries@buytaert.net>2001-01-22 21:10:13 +0000
commit18f8246fd90777ba9cec3c92d4e3e210b2c6f202 (patch)
tree3002d880d146da385b305d89f12ebeecd62e6249
parent10a4f6025ea93ce62d4e572cc8b17681d197098b (diff)
downloadbrdo-18f8246fd90777ba9cec3c92d4e3e210b2c6f202.tar.gz
brdo-18f8246fd90777ba9cec3c92d4e3e210b2c6f202.tar.bz2
- heck, I'll just remove that piece of code - it's no longer needed ;)
-rw-r--r--story.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/story.php b/story.php
index f71db1a1a..1f3df7d94 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, "[ <A HREF=\"index.php\"><FONT COLOR=\"$theme->hlcolor2\">home</FONT></A> | <A HREF=\"story.php?op=reply&id=$story->id&pid=0\"><FONT COLOR=\"$theme->hlcolor2\">add a comment</FONT></A> ]");
+ $theme->article($story);
comment_render($id, $cid);
}
else {