Changeset 8598
- Timestamp:
- 04/22/08 23:07:53 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/dwhittle/1.1/lib/plugins/sfPropelPlugin/lib/propel/addon/sfPropel.class.php
r8400 r8598 41 41 { 42 42 Propel::setConfiguration($configuration); 43 Propel::initialize(); 43 44 if(!Propel::isInit()) 45 { 46 Propel::initialize(); 47 } 44 48 } 45 49 branches/dwhittle/1.1/lib/plugins/sfPropelPlugin/lib/propel/database/sfPropelDatabase.class.php
r7799 r8598 60 60 } 61 61 62 Propel::setConfiguration(self::$config);63 64 62 if($this->getParameter('pooling', false)) 65 63 { … … 70 68 Propel::disableInstancePooling(); 71 69 } 72 73 Propel::initialize();74 70 } 75 71