diff --git a/code/model/Comment.php b/code/model/Comment.php index ce89529..be75c9e 100755 --- a/code/model/Comment.php +++ b/code/model/Comment.php @@ -561,15 +561,6 @@ class Comment extends DataObject { ); } - // Show parent comment details - if(($parent = $this->ParentComment()) && $parent->exists()) { - $fields->insertAfter( - TextField::create('ParentCommentDescription', $this->fieldLabel('ParentComment'), $parent->Title) - ->performReadonlyTransformation(), - 'Created' - ); - } - $this->extend('updateCMSFields', $fields); return $fields; }