From: Marcus Boerger Date: Sat, 31 May 2003 15:20:11 +0000 (+0000) Subject: Classes are neither interfaces nor necessarily abstract X-Git-Tag: RELEASE_1_0_2~484 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d78168c7b6407ca2734e09d6d5f2f628837085d;p=php Classes are neither interfaces nor necessarily abstract --- diff --git a/ext/spl/spl_functions.c b/ext/spl/spl_functions.c index 7e17755d47..ea51d695e2 100755 --- a/ext/spl/spl_functions.c +++ b/ext/spl/spl_functions.c @@ -70,7 +70,6 @@ void spl_register_std_class(zend_class_entry ** ppce, zend_namespace * namespace *ppce = zend_register_internal_ns_class(&ce, NULL, namespace_entry, NULL TSRMLS_CC); /* entries changed by initialize */ - (*ppce)->ce_flags = ZEND_ACC_ABSTRACT | ZEND_ACC_INTERFACE; (*ppce)->create_object = obj_ctor; } /* }}} */