Skip to content

Commit 4b5d03f

Browse files
committed
Fixing a bug when displaying reply links
1 parent f96575c commit 4b5d03f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/presenters/Forum/ViewPresenter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function link()
2222
break;
2323
case 'Forum_Reply':
2424
$post = Forum_Reply::find($this->resource->id)->post;
25-
return HTML::link('/forum/post/view/'. $this->resource->id, $this->resource->name);
25+
return HTML::link('/forum/post/view/'. $post->id .'#reply:'. $this->resource->id, $this->resource->name);
2626
break;
2727
}
2828
}

0 commit comments

Comments
 (0)