|
Changes integrated with r13522 2 parse errors found in: Zend\Db\Adapter\Pdo\Oci.php on line 174 Reopening due to parse errors reported. They were fixed by Thomas I see no problems at all with latest trunk. Therefor unassigning this issue as this problem seems to be OS specific. #.../zf-trunk$ grep -iHrn 'is_null' library/* | grep -v '\/.svn' fixed with: find library/ -type f -name ".php" -exec sed -i -r 's#[^\!]is_null\s(([^\(\)]*))#(\1 === NULL)#g' {} \; Here are the corrected commands:
find library/ -type f -name "*.php" -exec sed -i -r 's#([^\!])is_null\s*\(([^\(\)]*)\)#\1\2 === null#g' {} \;
find library/ -type f -name "*.php" -exec sed -i -r 's#[\!]is_null\s*\(([^\(\)]*)\)#\1 !== null#g' {} \;
changed fix version because it's currently not merged to branch I don't believe this actually made it into 1.10.8... |
||||||||||||||||||||||||||||||||||||||||||||||
benchmark:
output: