diff options
| author | Stig Bakken <ssb@php.net> | 2000-03-06 18:44:01 +0000 | 
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 2000-03-06 18:44:01 +0000 | 
| commit | d02fe90b009d3145b0b9d24510c6869c68d2b99b (patch) | |
| tree | e7ad756d7b5a2ed3a082a63dc97e3dd95a5cd44c /ext/domxml/domxml.c | |
| parent | 31c9ad183133a1d24a686b325414513a4373a680 (diff) | |
| download | php-git-d02fe90b009d3145b0b9d24510c6869c68d2b99b.tar.gz | |
Change extension names in all extensions' zend_module_entry to their
directory name.
Diffstat (limited to 'ext/domxml/domxml.c')
| -rw-r--r-- | ext/domxml/domxml.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/domxml.c b/ext/domxml/domxml.c index 70e12ebaa5..87e9adf9ec 100644 --- a/ext/domxml/domxml.c +++ b/ext/domxml/domxml.c @@ -98,7 +98,7 @@ void domxmltestnode_class_startup();  #endif  zend_module_entry php_domxml_module_entry = { -	"DOM", php_domxml_functions, PHP_MINIT(domxml), NULL, NULL, NULL, PHP_MINFO(domxml), STANDARD_MODULE_PROPERTIES +	"domxml", php_domxml_functions, PHP_MINIT(domxml), NULL, NULL, NULL, PHP_MINFO(domxml), STANDARD_MODULE_PROPERTIES  };  void _free_node(xmlNode *tmp) {  | 
