From 97e7016a953a3387dfdd62357a81623b3332b69a Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Fri, 8 Aug 2014 07:33:39 -0500 Subject: [PATCH] Issue #2317001 by Arla: Fixed FieldPluginBase::addAdditionalFields() bad debug message. --- core/modules/views/src/Plugin/views/field/FieldPluginBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php index dae6d55d0415..ab7b97cd07f5 100644 --- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php +++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php @@ -161,7 +161,7 @@ protected function addAdditionalFields($fields = NULL) { } if (empty($table_alias)) { - debug(t('Handler @handler tried to add additional_field @identifier but @table could not be added!', array('@handler' => $this->definition['handler'], '@identifier' => $identifier, '@table' => $info['table']))); + debug(t('Handler @handler tried to add additional_field @identifier but @table could not be added!', array('@handler' => $this->definition['id'], '@identifier' => $identifier, '@table' => $info['table']))); $this->aliases[$identifier] = 'broken'; continue; } -- GitLab