summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-01-26 14:48:52 +0000
committerDries Buytaert <dries@buytaert.net>2001-01-26 14:48:52 +0000
commitb1d395d52d160c203edff69c323c031f833a8219 (patch)
treeda7c823ddc90a266e4d97f2cf97954d790c57554
parent32c89442d3e91c01f64211be372a0ae103025fa6 (diff)
downloadbrdo-b1d395d52d160c203edff69c323c031f833a8219.tar.gz
brdo-b1d395d52d160c203edff69c323c031f833a8219.tar.bz2
- fixed small bug in story.php (reported by martin@abol.com)
-rw-r--r--story.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/story.php b/story.php
index 56d832ad2..fa2f7651e 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=\"story.php?id=$id\">reply to this story</A> ]");
+ $theme->article($story, "[ <A HREF=\"story.php?op=reply&id=$id&pid=0\">reply to this story</A> ]");
comment_render($id, $cid);
}
else {