Merge pull request #753 from 51systems/master
JoinedSubclassPersister doesn't properly bind on some versions of php
This commit is contained in:
commit
0ae8aa36d7
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ class JoinedSubclassPersister extends AbstractEntityInheritancePersister
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($data as $columnName => $value) {
|
foreach ($data as $columnName => $value) {
|
||||||
if (!isset($id[$columnName])) {
|
if (!is_array($id) || !isset($id[$columnName])) {
|
||||||
$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$columnName]);
|
$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$columnName]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue