BUGFIX Removed duplicate calls to extension

$this->extend('updateCMSFields', $fields);
is already called by;
$fields = parent::getCMSFields();
This commit is contained in:
mattclegg 2012-08-16 15:15:56 +02:00
parent 3ae0b78c7d
commit 6fd6bd869d

View File

@ -78,8 +78,6 @@ class BlogEntry extends Page {
$fields->addFieldToTab("Root.Main", new TextField("Tags", _t("BlogEntry.TS", "Tags (comma sep.)")),"Content");
$this->extend('updateCMSFields', $fields);
return $fields;
}