Nesting level too deep because using in_array, fixed
This commit is contained in:
parent
b01212e2e8
commit
666e2f3f8d
1 changed files with 10 additions and 2 deletions
|
@ -129,9 +129,17 @@ class Doctrine_Transaction extends Doctrine_Connection_Module
|
||||||
*/
|
*/
|
||||||
public function addInvalid(Doctrine_Record $record)
|
public function addInvalid(Doctrine_Record $record)
|
||||||
{
|
{
|
||||||
if (in_array($record, $this->invalid)) {
|
/**
|
||||||
return false;
|
* for some weird reason in_array cannot be used here (php bug ?)
|
||||||
|
*
|
||||||
|
* if used it results in fatal error : [ nesting level too deep ]
|
||||||
|
*/
|
||||||
|
foreach ($this->invalid as $val) {
|
||||||
|
if ($val === $record) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->invalid[] = $record;
|
$this->invalid[] = $record;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue