Changeset 164

Show
Ignore:
Timestamp:
02/19/06 16:20:26 (3 years ago)
Author:
hrak
Message:

Restored PHP4 compatibility

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/ChangeLog

    r163 r164  
     12006-02-19  Hans Rakers <hans at parse dot nl> 
     2 
     3        * Restored PHP4 compatibility 
     4 
    152006-02-18  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    26 
  • eaccelerator/trunk/ea_store.c

    r162 r164  
    825825        return ZEND_HASH_APPLY_KEEP; 
    826826} 
    827 #endif 
    828827 
    829828/* 
     
    845844        return ZEND_HASH_APPLY_REMOVE; 
    846845} 
     846#endif 
    847847 
    848848eaccelerator_class_entry *store_class_entry(zend_class_entry * from TSRMLS_DC) 
     
    924924        store_zval_hash(&to->default_properties, &from->default_properties); 
    925925#endif 
     926 
     927#ifdef ZEND_ENGINE_2 
    926928        store_hash(&to->function_table, &from->function_table, (store_bucket_t) store_op_array, (check_bucket_t) store_function_inheritance_check, from); 
     929#else 
     930        store_hash(&to->function_table, &from->function_table, (store_bucket_t) store_op_array, NULL, NULL); 
     931#endif 
    927932 
    928933#ifdef DEBUG