summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
authorgerard sychay <[email protected]>2012-11-15 10:58:37 -0500
committergerard sychay <[email protected]>2012-11-15 10:58:37 -0500
commit8e7638a3174a63ecc100e2a570b9d06c4b44bd78 (patch)
tree0518da57c1be285c252e50e625492a35e298da70 /idiorm.php
parent87b05b7da4290ab15c667a32982e1c6327eed582 (diff)
Fix bug where input parameters were sent as part-indexed, part associative array
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 9424d4a..7dbf9af 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -1267,7 +1267,7 @@
$query = array();
// remove any expression fields as they are already baked into the query
- $values = array_diff_key($this->_dirty_fields, $this->_expr_fields);
+ $values = array_values(array_diff_key($this->_dirty_fields, $this->_expr_fields));
if (!$this->_is_new) { // UPDATE
// If there are no dirty values, do nothing
@@ -1493,4 +1493,4 @@
/**
* A placeholder for exceptions eminating from the IdiormString class
*/
- class IdiormStringException extends Exception {} \ No newline at end of file
+ class IdiormStringException extends Exception {}