diff --git a/story.php b/story.php
index 96cbb23ccdc78f35a8ffb6d15731275e62966695..f71db1a1a88196885b30e75627201eb4b4cf339a 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=\"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 {