Little fix for cleanData method
This commit is contained in:
parent
46f2cbe426
commit
f547396124
1 changed files with 6 additions and 4 deletions
|
@ -270,12 +270,14 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
|
||||||
case "object":
|
case "object":
|
||||||
|
|
||||||
if($tmp[$name] !== self::$null) {
|
if($tmp[$name] !== self::$null) {
|
||||||
if( ! is_array($tmp[$name] && ! is_object($tmp[$name]))
|
if(is_string($tmp[$name])) {
|
||||||
$value = unserialize($tmp[$name]);
|
$value = unserialize($tmp[$name]);
|
||||||
|
|
||||||
if($value === false)
|
|
||||||
throw new Doctrine_Exception("Unserialization of $name failed. ".var_dump($tmp[$name],true));
|
|
||||||
|
|
||||||
|
if($value === false)
|
||||||
|
throw new Doctrine_Exception("Unserialization of $name failed. ".var_dump($tmp[$name],true));
|
||||||
|
} else
|
||||||
|
$value = $tmp[$name];
|
||||||
|
|
||||||
$this->data[$name] = $value;
|
$this->data[$name] = $value;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue