Changeset 2965 for branches/felix-testing-implementation/src/database/AgaviDoctrineDatabase.class.php
- Timestamp:
- 09/30/08 08:39:17 (3 months ago)
- Location:
- branches/felix-testing-implementation
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
src/database/AgaviDoctrineDatabase.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/felix-testing-implementation
- Property svnmerge-integrated changed from /branches/1.0:1-2892,2894-2944 /branches/dominik-validation-argument-sources:1-2901 to /branches/1.0:1-2892,2894-2964 /branches/dominik-validation-argument-sources:1-2901
-
branches/felix-testing-implementation/src/database/AgaviDoctrineDatabase.class.php
r2785 r2965 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

