From: Jani Taskinen Date: Sat, 5 Sep 2009 17:07:14 +0000 (+0000) Subject: - Fixed bug #49182 (PHP CGI always outputs the shebang line) X-Git-Tag: php-5.2.11RC3~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06f5b207c905604823a5280d1f0db61932de8098;p=php - Fixed bug #49182 (PHP CGI always outputs the shebang line) --- diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c index d56c263d5a..6229a37136 100644 --- a/Zend/zend_object_handlers.c +++ b/Zend/zend_object_handlers.c @@ -569,7 +569,7 @@ static zval **zend_std_get_property_ptr_ptr(zval *object, zval *member TSRMLS_DC /* we don't have access controls - will just add it */ new_zval = &EG(uninitialized_zval); -/* zend_error(E_NOTICE, "Undefined property: %s", Z_STRVAL_P(member)); */ + zend_error(E_NOTICE, "Undefined property: %s", Z_STRVAL_P(member)); new_zval->refcount++; zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &new_zval, sizeof(zval *), (void **) &retval); } else {