]> granicus.if.org Git - php/commitdiff
Revert accidential commit until decision
authorMarcus Boerger <helly@php.net>
Sat, 29 Nov 2003 17:05:17 +0000 (17:05 +0000)
committerMarcus Boerger <helly@php.net>
Sat, 29 Nov 2003 17:05:17 +0000 (17:05 +0000)
Zend/zend_compile.c

index addc3db549174d0da65bd80706d5126ba3bdff14..3440584e728ea16fbad0bdc84a1be03661137aab 100644 (file)
@@ -2573,7 +2573,6 @@ void zend_do_declare_implicit_property(TSRMLS_D)
                && !zend_hash_exists(&CG(active_class_entry)->properties_info, opline_ptr->op2.u.constant.value.str.val, opline_ptr->op2.u.constant.value.str.len+1)) {
                znode property;
 
-               zend_error(E_STRICT, "Use of undefined property %s->%s", CG(active_class_entry)->name, opline_ptr->op2.u.constant.value.str.val);
                property = opline_ptr->op2;
                property.u.constant.value.str.val = estrndup(opline_ptr->op2.u.constant.value.str.val, opline_ptr->op2.u.constant.value.str.len);
                zend_do_declare_property(&property, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_IMPLICIT_PUBLIC TSRMLS_CC);