diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-01-22 21:07:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-01-22 21:07:38 +0000 |
commit | 10a4f6025ea93ce62d4e572cc8b17681d197098b (patch) | |
tree | ddf41fe4a45a262569bc20846d4235043444d3fc | |
parent | 15d5995eceac3fd6295d0dba228eb6c3524a7909 (diff) | |
download | brdo-10a4f6025ea93ce62d4e572cc8b17681d197098b.tar.gz brdo-10a4f6025ea93ce62d4e572cc8b17681d197098b.tar.bz2 |
- bugfix
-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=\"submission.php\"><FONT COLOR=\"$theme->hlcolor2\">submission queue</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, "[ <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> ]"); comment_render($id, $cid); } else { |