From 859f7add2090e7924aa40b42c8cd50e998189825 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Thu, 12 Apr 2012 12:13:22 +1200 Subject: [PATCH] MINOR TableField_Item::Fields() now conforms to parent TableListField_Item::Fields() for E_STRICT compliance --- forms/TableField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/TableField.php b/forms/TableField.php index 0d202ccc8..2ac169eef 100644 --- a/forms/TableField.php +++ b/forms/TableField.php @@ -687,7 +687,7 @@ class TableField_Item extends TableListField_Item { return new FieldList($this->fields); } - function Fields() { + function Fields($xmlSafe = true) { return $this->fields; }