Issue #2067529 by mrded, rhm50: Remove Unused local variable from /core/modules/views/lib/Drupal/views/ManyToOneHelper.php.

8.0.x
webchick 2013-12-03 21:41:29 -08:00
parent b917d2b009
commit 88db8c57bc
1 changed files with 3 additions and 3 deletions

View File

@ -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];
}
}
}