Commit e4ad6a68 authored by catch's avatar catch
Browse files

fix: #3557367 \Drupal\views\Plugin\views\HandlerBase::getJoin() triggers deprecation on PHP 8.5

By: @alexpott
By: @smustgrave
(cherry picked from commit bbe8c4ee)
parent d130c43b
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -707,7 +707,7 @@ public function storeExposedInput($input, $status) {
  public function getJoin() {
    // Get the join from this table that links back to the base table.
    // Determine the primary table to seek.
    if (empty($this->query->relationships[$this->relationship])) {
    if (!isset($this->relationship) || empty($this->query->relationships[$this->relationship])) {
      $base_table = $this->view->storage->get('base_table');
    }
    else {