From 5a0420b8e192cb3ff831a84019d871547e42f741 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Tue, 19 Oct 2010 01:03:31 +0000 Subject: [PATCH] ENHANCEMENT: simple extend hook for PageCommentForms. Temporary measure till #6053 is implemented (from r111443) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@112800 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/sitefeatures/PageCommentInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/sitefeatures/PageCommentInterface.php b/code/sitefeatures/PageCommentInterface.php index d1c4e7a0..9823bc54 100755 --- a/code/sitefeatures/PageCommentInterface.php +++ b/code/sitefeatures/PageCommentInterface.php @@ -221,6 +221,8 @@ class PageCommentInterface extends RequestHandler { "CommenterURL" => Cookie::get("PageCommentInterface_CommenterURL") )); + $this->extend('updatePageCommentForm', $form); + return $form; }