Home » Database » DB_DataObject » Bug #957
Dataobject find doesn't work with Zend Optimizer (mmcache to)
Details
| Submitted | 2004-03-06 09:52 UTC |
|---|---|
| From | szabo dot denes at internode dot hu |
| Status | No Feedback |
| Package | DB_DataObject |
| PHP Version | 4.3.4 |
| OS | linux |
| Roadmaps | (Not assigned) |
Comments
[2004-03-06 09:52 UTC] szabo dot denes at internode dot hu
Description:
------------
Dataobject fails when use find() if zend optimizer installed.
Reproduce code:
---------------
Original code from find( ):
$this->N = 0;
$tmpcond = $this->_condition;
$this->_build_condition($this->table()) ;
Patched code:
$this->N = 0;
$tables = $this->table();
$this->_build_condition($tables) ;
Expected result:
----------------
It is working.