Issue #2317001 by Arla: Fixed FieldPluginBase::addAdditionalFields() bad debug message.

8.0.x
Alex Pott 2014-08-08 07:33:39 -05:00
parent 8e6b32a9cc
commit 97e7016a95
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ abstract class FieldPluginBase extends HandlerBase {
}
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;
}