Changeset 264
- Timestamp:
- 08/06/06 22:44:23 (2 years ago)
- Files:
-
- eaccelerator/branches/0.9.5/ChangeLog (modified) (1 diff)
- eaccelerator/branches/0.9.5/control.php (modified) (1 diff)
- eaccelerator/branches/0.9.5/ea_info.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/branches/0.9.5/ChangeLog
r261 r264 1 2006-08-06 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 3 * Fix stupid bug (#159) 4 * Handle returning null instead of array (#156) 5 1 6 2006-08-03 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 7 eaccelerator/branches/0.9.5/control.php
r226 r264 59 59 } 60 60 $info = eaccelerator_info(); 61 if (!is_array($info)) { 62 die('An error occured getting eAccelerator information, this is caused if eAccelerator isn\'t initalised properly'); 63 } 61 64 /* }}} */ 62 65 eaccelerator/branches/0.9.5/ea_info.c
r261 r264 498 498 PHP_FUNCTION(eaccelerator_list_keys) 499 499 { 500 if (eaccelerator_mm_instance == NULL && eaccelerator_list_keys(return_value TSRMLS_CC)) {500 if (eaccelerator_mm_instance != NULL && eaccelerator_list_keys(return_value TSRMLS_CC)) { 501 501 return; 502 502 } else {