1
0
mirror of synced 2025-03-21 07:23:55 +03:00

$this->parent doesn't exist

This commit is contained in:
gnat 2007-10-30 17:51:33 +00:00
parent dc4be22bfe
commit 0695a6ab92

View File

@ -229,7 +229,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
if ($attribute >= 100) {
if ( ! isset($this->attributes[$attribute])) {
return $this->parent->getAttribute($attribute);
return parent::getAttribute($attribute);
}
return $this->attributes[$attribute];
}