diff options
author | Rob Richards <rrichards@php.net> | 2004-04-07 16:48:11 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2004-04-07 16:48:11 +0000 |
commit | fb39035e7788658a6244d272923dae488ab322d8 (patch) | |
tree | 6868c667f6b2feae17ff4fb1b4afc4f756db56f8 /ext/xsl/php_xsl.c | |
parent | e8340dd2c5f0cfcbeeef2bc6254b51552ac82851 (diff) | |
download | php-git-fb39035e7788658a6244d272923dae488ab322d8.tar.gz |
Fix class name
Diffstat (limited to 'ext/xsl/php_xsl.c')
-rw-r--r-- | ext/xsl/php_xsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index e179c05de3..7d51e0ec14 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -135,7 +135,7 @@ PHP_MINIT_FUNCTION(xsl) memcpy(&xsl_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers)); - REGISTER_XSL_CLASS(ce, "xsltprocessor", NULL, php_xsl_xsltprocessor_class_functions, xsl_xsltprocessor_class_entry); + REGISTER_XSL_CLASS(ce, "XSLTProcessor", NULL, php_xsl_xsltprocessor_class_functions, xsl_xsltprocessor_class_entry); #if HAVE_XSL_EXSLT exsltRegisterAll(); #endif |