Commit fbb870ec authored by catch's avatar catch
Browse files

fix: #3557530 \Drupal\views\ManyToOneHelper::addTable() triggers deprecations in PHP 8.5

parent 24c74c20
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public function addTable($join = NULL, $alias = NULL) {
    $relationship = $this->handler->relationship;

    // Determine the primary table to seek.
    if (empty($this->handler->query->relationships[$relationship])) {
    if (!isset($relationship, $this->handler->query->relationships[$relationship]['base'])) {
      $base_table = $this->handler->view->storage->get('base_table');
    }
    else {