rrichards Sun Sep 28 11:59:54 2008 UTC
Modified files:
/php-src/ext/dom document.c
Log:
fix bug #46191 (BC break: DOMDocument saveXML() doesn't accept null)
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/document.c?r1=1.93&r2=1.94&diff_format=u
Index: php-src/ext/dom/document.c
diff -u php-src/ext/dom/document.c:1.93 php-src/ext/dom/document.c:1.94
--- php-src/ext/dom/document.c:1.93 Thu Aug 14 08:38:37 2008
+++ php-src/ext/dom/document.c Sun Sep 28 11:59:54 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: document.c,v 1.93 2008/08/14 08:38:37 tony2001 Exp $ */
+/* $Id: document.c,v 1.94 2008/09/28 11:59:54 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -155,7 +155,7 @@
static
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_savexml, 0, 0, 0)
- ZEND_ARG_OBJ_INFO(0, node, DOMNode, 0)
+ ZEND_ARG_OBJ_INFO(0, node, DOMNode, 1)
ZEND_END_ARG_INFO();
static
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php