Browse Source

- Update to new API

PHP-5.1
Marcus Boerger 22 years ago
parent
commit
0e6d7d652e
  1. 4
      ext/standard/incomplete_class.c

4
ext/standard/incomplete_class.c

@ -82,8 +82,8 @@ static int incomplete_class_has_property(zval *object, zval *member, int check_e
return 0;
}
static union _zend_function *incomplete_class_get_method(zval *object, char *method, int method_len TSRMLS_DC) {
incomplete_class_message(object, E_ERROR TSRMLS_CC);
static union _zend_function *incomplete_class_get_method(zval **object, char *method, int method_len TSRMLS_DC) {
incomplete_class_message(*object, E_ERROR TSRMLS_CC);
return NULL;
}

Loading…
Cancel
Save