@@ -1349,14 +1349,14 @@ |
||
1349 | 1349 | * Add an LEFT JOIN source to the query |
1350 | 1350 | */ |
1351 | 1351 | public function left_join($table, $constraint, $table_alias = null) { |
1352 | - return $this->_add_join_source("LEFT", $table, $constraint, $table_alias); |
|
1352 | + return $this->_add_join_source("LEFT", $table, $constraint, $table_alias); |
|
1353 | 1353 | } |
1354 | 1354 | |
1355 | 1355 | /** |
1356 | 1356 | * Add an RIGHT JOIN source to the query |
1357 | 1357 | */ |
1358 | 1358 | public function right_join($table, $constraint, $table_alias = null) { |
1359 | - return $this->_add_join_source("RIGHT", $table, $constraint, $table_alias); |
|
1359 | + return $this->_add_join_source("RIGHT", $table, $constraint, $table_alias); |
|
1360 | 1360 | } |
1361 | 1361 | |
1362 | 1362 | /** |