diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-01-26 14:48:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-01-26 14:48:52 +0000 |
commit | b1d395d52d160c203edff69c323c031f833a8219 (patch) | |
tree | da7c823ddc90a266e4d97f2cf97954d790c57554 | |
parent | 32c89442d3e91c01f64211be372a0ae103025fa6 (diff) | |
download | brdo-b1d395d52d160c203edff69c323c031f833a8219.tar.gz brdo-b1d395d52d160c203edff69c323c031f833a8219.tar.bz2 |
- fixed small bug in story.php (reported by martin@abol.com)
-rw-r--r-- | story.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |