Commit db33cb2b81d74a10b9c93ee902da304d149dc8ab
1 parent
413b6c24
Start testing the new proxy code, and turn cache grind on for testing.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5246 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
lib/ktentity.inc
| ... | ... | @@ -33,7 +33,7 @@ $_STOPCACHING = array(); |
| 33 | 33 | |
| 34 | 34 | require_once(KT_LIB_DIR . '/cache/cache.inc.php'); |
| 35 | 35 | |
| 36 | -DEFINE("EVIL_CACHE_GRIND", false); | |
| 36 | +DEFINE("EVIL_CACHE_GRIND", true); | |
| 37 | 37 | |
| 38 | 38 | class KTEntity { |
| 39 | 39 | var $_bUsePearError = false; |
| ... | ... | @@ -601,7 +601,7 @@ class KTEntityUtil { |
| 601 | 601 | } |
| 602 | 602 | |
| 603 | 603 | function &get($sClassName, $iId) { |
| 604 | - /* | |
| 604 | + /* */ | |
| 605 | 605 | $sProxyClass = KTEntityUtil::_getProxyClass($sClassName); |
| 606 | 606 | $oObject =& new $sProxyClass($iId); |
| 607 | 607 | $res = $oObject->getId(); | ... | ... |