summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-12-09 02:02:44 +0000
committerfoobar <sniper@php.net>2001-12-09 02:02:44 +0000
commit068be1721fd7441ff7f8cee9862055317c2232b1 (patch)
tree03784af4444c1722f0ee2247dec77ab911fce7cf /ext
parentc8ef634f1b4b62822af23907d865043c602567e2 (diff)
downloadphp-git-068be1721fd7441ff7f8cee9862055317c2232b1.tar.gz
Fixed a typo.
Diffstat (limited to 'ext')
-rw-r--r--ext/xslt/sablot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/xslt/sablot.c b/ext/xslt/sablot.c
index 05b4c486ac..96d1da92e8 100644
--- a/ext/xslt/sablot.c
+++ b/ext/xslt/sablot.c
@@ -243,21 +243,21 @@ PHP_FUNCTION(xslt_set_sax_handlers)
/* Document handlers (document start, document end) */
if (strcasecmp(string_key, "document") == 0) {
- SEPERATE_ZVAL(handler);
+ SEPARATE_ZVAL(handler);
register_sax_handler_pair(&XSLT_SAX(handle).doc_start,
&XSLT_SAX(handle).doc_end,
handler);
}
/* Element handlers, start of an element, and end of an element */
else if (strcasecmp(string_key, "element") == 0) {
- SEPERATE_ZVAL(handler);
+ SEPARATE_ZVAL(handler);
register_sax_handler_pair(&XSLT_SAX(handle).element_start,
&XSLT_SAX(handle).element_end,
handler);
}
/* Namespace handlers, start of a namespace, end of a namespace */
else if (strcasecmp(string_key, "namespace") == 0) {
- SEPERATE_ZVAL(handler);
+ SEPARATE_ZVAL(handler);
register_sax_handler_pair(&XSLT_SAX(handle).namespace_start,
&XSLT_SAX(handle).namespace_end,
handler);