Changeset 326
- Timestamp:
- 08/19/07 16:20:56 (9 months ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/control.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r325 r326 1 2007-08-19 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 * Fix an E_NOTICE error in the control panel 3 1 4 2007-08-16 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 * Fix a typo in the config file. #2695 * Fix a typo in the config file. #269 3 6 4 7 2007-08-14 Hans Rakers <hans at react.nl> 5 8 6 * Optimizer fix for #242. PHP-5.2.1 introduces a ZEND_JMP before a7 ZEND_FETCH_CLASS/ZEND_CATCH which the optimizer did not handle8 correctly, resulting in uncaught exceptions. (Thanks to warwickshaw)9 * Optimizer fix for #242. PHP-5.2.1 introduces a ZEND_JMP before a 10 ZEND_FETCH_CLASS/ZEND_CATCH which the optimizer did not handle 11 correctly, resulting in uncaught exceptions. (Thanks to warwickshaw) 9 12 10 13 2007-05-09 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> eaccelerator/trunk/control.php
r295 r326 514 514 // search 515 515 function usersearch ($val) { 516 return preg_match('/'.preg_quote($_GET['str'], '/').'/i', $val['name']); 516 $str = isset($_GET['str']) ? $_GET['str'] : ''; 517 return preg_match('/'.preg_quote($str, '/').'/i', $val['name']); 517 518 } 518 519 $userkeys = array_filter($userkeys, 'usersearch');