From: Marcus Boerger Date: Sun, 5 Mar 2006 18:32:21 +0000 (+0000) Subject: - Fix comment, too X-Git-Tag: RELEASE_1_3~530 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24618f2b3b99007b62cd526f35a4b406d20861ec;p=php - Fix comment, too --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 09eb3212a0..f0dc4444e4 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2054,7 +2054,7 @@ static zend_bool zend_do_perform_implementation_check(zend_function *fe, zend_fu return 1; } - /* No implementation checks for constructors */ + /* Checks for constructors only if they are declared in an interface */ if ((fe->common.fn_flags & ZEND_ACC_CTOR) && !(proto->common.scope->ce_flags & ZEND_ACC_INTERFACE)) { return 1; }