diff options
author | Julien Pauli <jpauli@php.net> | 2015-06-10 14:15:14 +0200 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2015-06-10 14:26:49 +0200 |
commit | fa6f9e100476fbdd65495524616a0373edb24f87 (patch) | |
tree | 41a26fb1003f9e64f13182cc4061f91b7b05c426 /ext/dom/document.c | |
parent | bf72e139010bc308fceb6efbc0ee3b104f1312db (diff) | |
download | php-git-PHP-5.5.26.tar.gz |
Fix wrong mergephp-5.5.26PHP-5.5.26
Diffstat (limited to 'ext/dom/document.c')
-rw-r--r-- | ext/dom/document.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/document.c b/ext/dom/document.c index a66450df0a..d82ca92096 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -1991,7 +1991,7 @@ static void _dom_document_schema_validate(INTERNAL_FUNCTION_PARAMETERS, int type int is_valid; char resolved_path[MAXPATHLEN + 1]; - if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Op|l", &id, dom_document_class_entry, &source, &source_len, &flags) == FAILURE) { + if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os|l", &id, dom_document_class_entry, &source, &source_len, &flags) == FAILURE) { return; } |