PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Database » DB_DataObject » Bug #957

Dataobject find doesn't work with Zend Optimizer (mmcache to)

Details

Submitted2004-03-06 09:52 UTC
Fromszabo dot denes at internode dot hu
StatusNo Feedback
PackageDB_DataObject
PHP Version4.3.4
OSlinux
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.