Issue #2067529 by mrded, rhm50: Remove Unused local variable from /core/modules/views/lib/Drupal/views/ManyToOneHelper.php.
parent
b917d2b009
commit
88db8c57bc
|
@ -220,11 +220,11 @@ class ManyToOneHelper {
|
|||
}
|
||||
$this->handler->view->many_to_one_aliases[$field][$value] = $this->handler->table . '_value_' . ($this->handler->view->many_to_one_count[$this->handler->table]++);
|
||||
}
|
||||
$alias = $this->handler->tableAliases[$value] = $this->addTable($join, $this->handler->view->many_to_one_aliases[$field][$value]);
|
||||
|
||||
// and set table_alias to the first of these.
|
||||
$this->handler->tableAliases[$value] = $this->addTable($join, $this->handler->view->many_to_one_aliases[$field][$value]);
|
||||
// Set tableAlias to the first of these.
|
||||
if (empty($this->handler->tableAlias)) {
|
||||
$this->handler->tableAlias = $alias;
|
||||
$this->handler->tableAlias = $this->handler->tableAliases[$value];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue