From eb2bfe7d496b2d780a4a7ee8963b316ad8fa7862 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Thu, 10 Jul 2014 10:58:30 +0100 Subject: [PATCH] Issue #2284017 by t0xicCode: Fixed CamelCase FieldItemList preSave call. --- core/lib/Drupal/Core/Field/FieldItemList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Field/FieldItemList.php b/core/lib/Drupal/Core/Field/FieldItemList.php index 4305ccdf2305..0c6559c20775 100644 --- a/core/lib/Drupal/Core/Field/FieldItemList.php +++ b/core/lib/Drupal/Core/Field/FieldItemList.php @@ -224,7 +224,7 @@ public function preSave() { // Filter out empty items. $this->filterEmptyItems(); - $this->delegateMethod('presave'); + $this->delegateMethod('preSave'); } /** -- GitLab