]> granicus.if.org Git - php/commitdiff
Cosmetics and NEWS entry
authorChristian Stocker <chregu@php.net>
Mon, 19 Jan 2004 17:27:22 +0000 (17:27 +0000)
committerChristian Stocker <chregu@php.net>
Mon, 19 Jan 2004 17:27:22 +0000 (17:27 +0000)
NEWS
ext/xsl/tests/xslt011.phpt
ext/xsl/xsltprocessor.c

diff --git a/NEWS b/NEWS
index 62305d613ec7fa9f4aac825305df787ac5965d01..7d3ef24edc7a617247b85591b40b9bca87b1de36 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2004, PHP 5 RC1
+- Added xsltprocessor->registerPHPFunctions() (Christian)
 - Bundled new SPL extension (Marcus, Derick)
 - Upgraded SQLite library to version 2.8.11. (Ilia, Wez)
 - Fixed var_export() to show public, protected and private modifiers properly.
index 4f4d84285792a5277bddc5239d129b849bdef781..e0bd0cb5685ae0a91753182377b4e96310154396 100644 (file)
@@ -17,7 +17,7 @@ $dom = new domDocument();
   
   $xml = new DomDocument();
   $xml->load(dirname(__FILE__)."/xslt011.xml");
-  $proc->registerPhpFunctions();
+  $proc->registerPHPFunctions();
   print $proc->transformToXml($xml);
  
   function foobar($id, $secondArg = "" ) {
index d73702b49db897eeb92e856a8910fb873eb5a357..d02682e98fa853de61ed12a81254c32964682971 100644 (file)
@@ -46,7 +46,7 @@ zend_function_entry php_xsl_xsltprocessor_class_functions[] = {
        PHP_FALIAS(getParameter, xsl_xsltprocessor_get_parameter, NULL)
        PHP_FALIAS(removeParameter, xsl_xsltprocessor_remove_parameter, NULL)
        PHP_FALIAS(hasExsltSupport, xsl_xsltprocessor_has_exslt_support, NULL)
-       PHP_FALIAS(registerPhpFunctions, xsl_xsltprocessor_register_php_functions, NULL)
+       PHP_FALIAS(registerPHPFunctions, xsl_xsltprocessor_register_php_functions, NULL)
        {NULL, NULL, NULL}
 };