Show
Ignore:
Timestamp:
09/15/06 15:15:06 (2 years ago)
Author:
bart
Message:

Add php 5.2 support. These are minimal changes so they shouldn't affect stability.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/branches/0.9.5/ea_store.c

    r269 r270  
    808808        if (parent) { 
    809809                /* unpack the \0classname\0membername\0 style property name to seperate vars */ 
     810#ifdef ZEND_ENGINE_2_2 
     811                zend_unmangle_property_name(p->arKey, p->nKeyLength, &cname, &mname); 
     812#else 
    810813                zend_unmangle_property_name(p->arKey, &cname, &mname); 
     814#endif 
    811815         
    812816                /* lookup the member's info in parent and child */