1
0
mirror of synced 2024-12-13 22:56:04 +03:00
This commit is contained in:
zYne 2007-03-23 16:31:35 +00:00
parent 3c3408a99a
commit ef7f3c2bf1

View File

@ -94,8 +94,12 @@ abstract class Doctrine_Configurable
}
break;
case Doctrine::ATTR_CREATE_TABLES:
$attribute = Doctrine::ATTR_EXPORT;
$value = Doctrine::EXPORT_ALL;
$attribute = Doctrine::ATTR_EXPORT;
if ($value) {
$value = Doctrine::EXPORT_ALL;
} else {
$value = Doctrine::EXPORT_NONE;
}
break;
case Doctrine::ATTR_ACCESSORS:
$accessors = array('none','get','set','both');