From: Zeev Suraski Date: Sun, 3 Aug 2003 21:04:39 +0000 (+0000) Subject: Default to public X-Git-Tag: RELEASE_1_2b5~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3f4147931ebd046e43a21688403467b896cfb84;p=php Default to public --- diff --git a/Zend/zend_API.c b/Zend/zend_API.c index bca19db0d2..4c26d87ffe 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -1170,7 +1170,11 @@ int zend_register_functions(zend_class_entry *scope, zend_function_entry *functi internal_function->num_args = 0; internal_function->pass_rest_by_reference = 0; } - internal_function->fn_flags = ptr->flags; + if (ptr->flags) { + internal_function->fn_flags = ptr->flags; + } else { + internal_function->fn_flags = ZEND_ACC_PUBLIC; + } if (!internal_function->handler) { zend_error(error_type, "Null function defined as active function"); zend_unregister_functions(functions, count, target_function_table TSRMLS_CC);