summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-10-25 18:28:27 +0100
committerJamie Matthews <[email protected]>2010-10-25 18:28:27 +0100
commit31558e93f67c17b715741f395699fc902d9bd552 (patch)
tree277945a91421a2f531c566f7a1d20a1e76735bf7 /idiorm.php
parentb513f1e3ea3f6edb9d781dcd32ceb1d1497c60bf (diff)
Rename _add_join to _add_join_source
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/idiorm.php b/idiorm.php
index 7984bc4..ca1adfc 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -419,7 +419,7 @@
*
* The final (optional) argument specifies an alias for the joined table.
*/
- protected function _add_join($join_operator, $table, $constraint, $table_alias=null) {
+ protected function _add_join_source($join_operator, $table, $constraint, $table_alias=null) {
$join_operator = trim("{$join_operator} JOIN");
@@ -445,7 +445,7 @@
* Add a simple JOIN source to the query
*/
public function join($table, $constraint, $table_alias=null) {
- return $this->_add_join("", $table, $constraint, $table_alias);
+ return $this->_add_join_source("", $table, $constraint, $table_alias);
}
/**