We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3a76a2 + 3303b4f commit 95a4c25Copy full SHA for 95a4c25
Editor/Join.php
@@ -537,9 +537,6 @@ public function data($editor, &$data)
537
$stmt->order($this->order());
538
}
539
540
- $stmt->left_join($this->_leftJoin);
541
- $this->_apply_where($stmt);
542
-
543
if (isset($this->_join['table'])) {
544
// Working with a link table
545
$stmt
@@ -560,6 +557,9 @@ public function data($editor, &$data)
560
557
);
561
558
562
559
+ $stmt->left_join($this->_leftJoin);
+ $this->_apply_where($stmt);
+
563
// Check that the joining field is available. The joining key can
564
// come from the Editor instance's primary key, or any other field,
565
// including a nested value (from a left join). If the instance's
0 commit comments