Changeset 2945
- Timestamp:
- 09/25/08 12:30:33 (8 weeks ago)
- Location:
- branches/0.11
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/database/AgaviDoctrineDatabase.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/CHANGELOG
r2943 r2945 4 4 0.11.4 RC1 (September ??, 2008) 5 5 ------------------------------- 6 7 ADD: Allow specifying of doctrine template implementations (#864) (David, TANAKA Koichi) 6 8 7 9 FIX: SOAP and XMLRPC test scripts in sample app are broken (#866) (David) -
branches/0.11/src/database/AgaviDoctrineDatabase.class.php
r2732 r2945 22 22 * @author Ross Lawley <ross.lawley@gmail.com> 23 23 * @author David Zülke <dz@bitxtender.com> 24 * @author TANAKA Koichi <tanaka@ensites.com> 24 25 * @copyright Authors 25 26 * @copyright The Agavi Project … … 74 75 * @author David Zülke <dz@bitxtender.com> 75 76 * @author Ross Lawley <ross.lawley@gmail.com> 77 * @author TANAKA Koichi <tanaka@ensites.com> 76 78 * @since 0.11.0 77 79 */ … … 138 140 } 139 141 142 foreach((array)$this->getParameter('impls', array()) as $templateName => $className) { 143 $this->connection->setImpl($templateName, $className); 144 } 145 146 foreach((array)$this->getParameter('manager_impls', array()) as $templateName => $className) { 147 $this->doctrineManager->setImpl($templateName, $className); 148 } 149 140 150 Doctrine::loadModels($this->getParameter('load_models')); 141 151

