Changeset 251

Show
Ignore:
Timestamp:
07/28/06 22:32:06 (2 years ago)
Author:
bart
Message:

Restore the class entry of zend_property_info when using php 5.2, this fixes bug #151

Files:

Legend:

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

    r249 r251  
     12006-07-28  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2 
     3        * Restore the class entry of zend_property_info when using php 5.2, this fixes bug #151 
     4 
    152006-07-27  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    26 
  • eaccelerator/trunk/ea_restore.c

    r248 r251  
    635635    to->doc_comment_len = 0; 
    636636    to->doc_comment = NULL; 
     637#endif 
     638#ifdef ZEND_ENGINE_2_2 
     639    to->ce = EAG(class_entry); 
    637640#endif 
    638641        return to; 
     
    855858        EAG(xpad)--; 
    856859#endif 
    857  
    858860        return to; 
    859861}