chregu Mon Jan 19 12:27:23 2004 EDT
Modified files:
/php-src NEWS
/php-src/ext/xsl xsltprocessor.c
/php-src/ext/xsl/tests xslt011.phpt
Log:
Cosmetics and NEWS entry
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1581&r2=1.1582&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1581 php-src/NEWS:1.1582
--- php-src/NEWS:1.1581 Mon Jan 19 03:28:15 2004
+++ php-src/NEWS Mon Jan 19 12:27:20 2004
@@ -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.
http://cvs.php.net/diff.php/php-src/ext/xsl/xsltprocessor.c?r1=1.21&r2=1.22&ty=u
Index: php-src/ext/xsl/xsltprocessor.c
diff -u php-src/ext/xsl/xsltprocessor.c:1.21 php-src/ext/xsl/xsltprocessor.c:1.22
--- php-src/ext/xsl/xsltprocessor.c:1.21 Mon Jan 19 10:07:08 2004
+++ php-src/ext/xsl/xsltprocessor.c Mon Jan 19 12:27:21 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: xsltprocessor.c,v 1.21 2004/01/19 15:07:08 chregu Exp $ */
+/* $Id: xsltprocessor.c,v 1.22 2004/01/19 17:27:21 chregu Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -46,7 +46,7 @@
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}
};
http://cvs.php.net/diff.php/php-src/ext/xsl/tests/xslt011.phpt?r1=1.5&r2=1.6&ty=u
Index: php-src/ext/xsl/tests/xslt011.phpt
diff -u php-src/ext/xsl/tests/xslt011.phpt:1.5 php-src/ext/xsl/tests/xslt011.phpt:1.6
--- php-src/ext/xsl/tests/xslt011.phpt:1.5 Mon Jan 19 10:00:59 2004
+++ php-src/ext/xsl/tests/xslt011.phpt Mon Jan 19 12:27:22 2004
@@ -17,7 +17,7 @@
$xml = new DomDocument();
$xml->load(dirname(__FILE__)."/xslt011.xml");
- $proc->registerPhpFunctions();
+ $proc->registerPHPFunctions();
print $proc->transformToXml($xml);
function foobar($id, $secondArg = "" ) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php