From 29c27578419ffa09bad13a59dc2072a550f3de33 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 25 Nov 2008 19:49:04 +0000 Subject: [PATCH] ENHANCEMENT Fixed default level in HeaderField - was duplicating defaults already present in two other places (see r66639) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@66646 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/HeaderField.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forms/HeaderField.php b/forms/HeaderField.php index 7339d31a4..7935a057b 100755 --- a/forms/HeaderField.php +++ b/forms/HeaderField.php @@ -19,12 +19,12 @@ class HeaderField extends DatalessField { if(!isset($args[1]) || is_numeric($args[1])) { $title = (isset($args[0])) ? $args[0] : null; $name = $title; // this means i18nized fields won't be easily accessible through fieldByName() - $headingLevel = (isset($args[1])) ? $args[1] : 2; + $headingLevel = (isset($args[1])) ? $args[1] : null; $allowHTML = (isset($args[2])) ? $args[2] : null; $form = (isset($args[3])) ? $args[3] : null; } - $this->headingLevel = $headingLevel; + if($headingLevel) $this->headingLevel = $headingLevel; $this->allowHTML = $allowHTML; parent::__construct($name, $title, null, $form);