Revision: 137
http://sourceforge.net/p/beeframework/code/137
Author: m_plomer
Date: 2014-02-17 11:29:34 +0000 (Mon, 17 Feb 2014)
Log Message:
-----------
- Doctrine -> Doctrine_Core
Modified Paths:
--------------
trunk/framework/Bee/Persistence/Doctrine/ManagerAugmenter.php
Modified: trunk/framework/Bee/Persistence/Doctrine/ManagerAugmenter.php
===================================================================
--- trunk/framework/Bee/Persistence/Doctrine/ManagerAugmenter.php 2014-01-19 14:20:28 UTC (rev 136)
+++ trunk/framework/Bee/Persistence/Doctrine/ManagerAugmenter.php 2014-02-17 11:29:34 UTC (rev 137)
@@ -101,11 +101,11 @@
// $this->doctrineManager->setAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER, true);
if($this->queryCacheDriver) {
- $this->doctrineManager->setAttribute(Doctrine::ATTR_QUERY_CACHE, $this->queryCacheDriver);
+ $this->doctrineManager->setAttribute(Doctrine_Core::ATTR_QUERY_CACHE, $this->queryCacheDriver);
}
if($this->resultCacheDriver) {
- $this->doctrineManager->setAttribute(Doctrine::ATTR_RESULT_CACHE, $this->resultCacheDriver);
+ $this->doctrineManager->setAttribute(Doctrine_Core::ATTR_RESULT_CACHE, $this->resultCacheDriver);
}
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|