Skip to content

Commit

Permalink
BUGFIX Added SecurityToken to PageCommentInterface->DeleteAllLink() (…
Browse files Browse the repository at this point in the history
…fixes #6223, thanks Pigeon)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@114195 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
chillu authored and Sam Minnee committed Feb 2, 2011
1 parent 3ba6e70 commit 7428010
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/sitefeatures/PageCommentInterface.php
Expand Up @@ -254,7 +254,8 @@ function CommentRssLink() {
*/ */
function DeleteAllLink() { function DeleteAllLink() {
if(Permission::check('CMS_ACCESS_CommentAdmin')) { if(Permission::check('CMS_ACCESS_CommentAdmin')) {
return Director::absoluteBaseURL() . "PageComment/deleteallcomments?pageid=" . $this->page->ID; $token = SecurityToken::inst();
return $token->addToUrl(Director::absoluteBaseURL() . "PageComment/deleteallcomments?pageid=" . $this->page->ID);
} }
} }


Expand Down

0 comments on commit 7428010

Please sign in to comment.