BUGFIX Fixed redirection in PageCommentInterface to use Link() instead of URLSegment (fixes 4200, thanks ktauber)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@103518 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-04-26 23:23:42 +00:00 committed by Sam Minnee
parent f19c5200d1
commit 53f53bd27f

View File

@ -343,7 +343,7 @@ class PageCommentInterface_Form extends Form {
$page = DataObject::get_by_id("Page", $comment->ParentID);
if($page) {
// Redirect to the actual post on the page.
return Director::redirect(Director::baseURL(). $page->URLSegment.'#PageComment_'.$comment->ID);
return Director::redirect($page->Link() . '#PageComment_' . $comment->ID);
}
}