summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2020-04-29 06:49:50 +1000
committerGitHub <[email protected]>2020-04-29 06:49:50 +1000
commitbacd47d57cc27888ceb9678ba86a2454cd72d725 (patch)
tree6382fac7c74da1df5d4687164cb4d6454c0e7547
parented8293a0a88b6c319b678d65cc6699c14b7e4926 (diff)
parent29d543293c2a4d6e8cef63974274d4056a028fa0 (diff)
Merge pull request #357 from CatalinFrancu/patch-1
Fix argument order in call to join().
-rw-r--r--idiorm.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/idiorm.php b/idiorm.php
index de7538a..2b1f38c 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -1355,7 +1355,7 @@
}
}
$query[] = "))";
- return $this->where_raw(join($query, ' '), $data);
+ return $this->where_raw(join(' ', $query), $data);
}
/**