From 068be1721fd7441ff7f8cee9862055317c2232b1 Mon Sep 17 00:00:00 2001 From: foobar Date: Sun, 9 Dec 2001 02:02:44 +0000 Subject: [PATCH] Fixed a typo. --- ext/xslt/sablot.c | 6 +++--- 1 file 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); -- 2.50.1