]> granicus.if.org Git - php/commitdiff
- Fixed bug #49182 (PHP CGI always outputs the shebang line)
authorJani Taskinen <jani@php.net>
Sat, 5 Sep 2009 17:07:14 +0000 (17:07 +0000)
committerJani Taskinen <jani@php.net>
Sat, 5 Sep 2009 17:07:14 +0000 (17:07 +0000)
Zend/zend_object_handlers.c

index d56c263d5a61d8ebaf6acb655b4ba75318e60dbf..6229a37136b317707a67b4a5117df63ba28419a4 100644 (file)
@@ -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 {