From: Marcus Boerger Date: Tue, 13 Apr 2004 20:25:49 +0000 (+0000) Subject: Classnames shall start with an uppercase character X-Git-Tag: php-5.0.0RC2RC1~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=087ed66b6955d15b3e0282044f1a6664e2c7b643;p=php Classnames shall start with an uppercase character --- diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index c13e6dac8a..ff0f313700 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -444,7 +444,7 @@ void zend_register_default_exception(TSRMLS_D) { zend_class_entry ce; - INIT_CLASS_ENTRY(ce, "exception", default_exception_functions); + INIT_CLASS_ENTRY(ce, "Exception", default_exception_functions); default_exception_ce = zend_register_internal_class(&ce TSRMLS_CC); default_exception_ce->create_object = zend_default_exception_new; memcpy(&default_exception_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));