rrichards               Mon Sep 22 15:09:07 2008 UTC

  Modified files:              
    /php-src/ext/dom    domconfiguration.c node.c 
  Log:
  fix hints causing phpdoc crash
  
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/domconfiguration.c?r1=1.12&r2=1.13&diff_format=u
Index: php-src/ext/dom/domconfiguration.c
diff -u php-src/ext/dom/domconfiguration.c:1.12 
php-src/ext/dom/domconfiguration.c:1.13
--- php-src/ext/dom/domconfiguration.c:1.12     Thu Aug 14 08:38:37 2008
+++ php-src/ext/dom/domconfiguration.c  Mon Sep 22 15:09:06 2008
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: domconfiguration.c,v 1.12 2008/08/14 08:38:37 tony2001 Exp $ */
+/* $Id: domconfiguration.c,v 1.13 2008/09/22 15:09:06 rrichards Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -31,7 +31,7 @@
 static
 ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_set_parameter, 0, 0, 2)
        ZEND_ARG_INFO(0, name)
-       ZEND_ARG_OBJ_INFO(0, value, DOMUserData, 0)
+       ZEND_ARG_INFO(0, value)
 ZEND_END_ARG_INFO();
 
 static
@@ -42,7 +42,7 @@
 static
 ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_can_set_parameter, 0, 0, 0)
        ZEND_ARG_INFO(0, name)
-       ZEND_ARG_OBJ_INFO(0, value, DOMUserData, 0)
+       ZEND_ARG_INFO(0, value)
 ZEND_END_ARG_INFO();
 /* }}} */
 
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/node.c?r1=1.62&r2=1.63&diff_format=u
Index: php-src/ext/dom/node.c
diff -u php-src/ext/dom/node.c:1.62 php-src/ext/dom/node.c:1.63
--- php-src/ext/dom/node.c:1.62 Thu Aug 14 08:38:37 2008
+++ php-src/ext/dom/node.c      Mon Sep 22 15:09:06 2008
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: node.c,v 1.62 2008/08/14 08:38:37 tony2001 Exp $ */
+/* $Id: node.c,v 1.63 2008/09/22 15:09:06 rrichards Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -112,7 +112,7 @@
 static
 ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_node_set_user_data, 0, 0, 3)
        ZEND_ARG_INFO(0, key)
-       ZEND_ARG_OBJ_INFO(0, data, DOMUserData, 0)
+       ZEND_ARG_INFO(0, data)
        ZEND_ARG_INFO(0, handler)
 ZEND_END_ARG_INFO();
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to