summaryrefslogtreecommitdiff
path: root/ext/dom/text.c
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2004-10-07 11:40:20 +0000
committerRob Richards <rrichards@php.net>2004-10-07 11:40:20 +0000
commit7dced12c320a09731f09e803c1ab1faf53e4803c (patch)
tree88ecb1c9dd8b9369756ec6e3b69e0f5d3dc79b75 /ext/dom/text.c
parentb0ffa2497b97be382fe1418a0f1da920fe10b8b5 (diff)
downloadphp-git-7dced12c320a09731f09e803c1ab1faf53e4803c.tar.gz
add DOMDocument xmlEncoding, xmlStandalone, xmlVersion (spec name changes)
add DOMText isElementContentWhitespace (spec name change) - old props/method kept for BC. - spec names changed when Level 3 went from Draft to Recommendation nuke some unused code
Diffstat (limited to 'ext/dom/text.c')
-rw-r--r--ext/dom/text.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/dom/text.c b/ext/dom/text.c
index ab89177065..4aeef619a8 100644
--- a/ext/dom/text.c
+++ b/ext/dom/text.c
@@ -38,6 +38,7 @@
zend_function_entry php_dom_text_class_functions[] = {
PHP_FALIAS(splitText, dom_text_split_text, NULL)
PHP_FALIAS(isWhitespaceInElementContent, dom_text_is_whitespace_in_element_content, NULL)
+ PHP_FALIAS(isElementContentWhitespace, dom_text_is_whitespace_in_element_content, NULL)
PHP_FALIAS(replaceWholeText, dom_text_replace_whole_text, NULL)
PHP_ME(domtext, __construct, NULL, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}