summaryrefslogtreecommitdiff
path: root/ext/spl/spl_functions.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-03-09 16:38:37 +0000
committerMarcus Boerger <helly@php.net>2004-03-09 16:38:37 +0000
commit50ee116f08e28ec83e23594b9fd5a95fff51d533 (patch)
treef9896b73e53e3cd439e956cd19841aec6a0c72a9 /ext/spl/spl_functions.c
parent494d8207fe1e85fcf6f33a833c3209df529468a6 (diff)
downloadphp-git-50ee116f08e28ec83e23594b9fd5a95fff51d533.tar.gz
Clearify the different method/class flags (as discussed with Andi).
Diffstat (limited to 'ext/spl/spl_functions.c')
-rwxr-xr-xext/spl/spl_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_functions.c b/ext/spl/spl_functions.c
index b4fd7507cf..fc9c315ea6 100755
--- a/ext/spl/spl_functions.c
+++ b/ext/spl/spl_functions.c
@@ -45,7 +45,7 @@ void spl_register_interface(zend_class_entry ** ppce, char * class_name, zend_fu
*ppce = zend_register_internal_class(&ce TSRMLS_CC);
/* entries changed by initialize */
- (*ppce)->ce_flags = ZEND_ACC_ABSTRACT | ZEND_ACC_INTERFACE;
+ (*ppce)->ce_flags = ZEND_ACC_INTERFACE;
}
/* }}} */