mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
SystemID and publicID params reversed in declaration handlers
This commit is contained in:
parent
f6ec1b481e
commit
0cbcd08e7c
@ -191,8 +191,8 @@ _pi_handler(void *user, const xmlChar *target, const xmlChar *data)
|
||||
static void
|
||||
_unparsed_entity_decl_handler(void *user,
|
||||
const xmlChar *name,
|
||||
const xmlChar *sys_id,
|
||||
const xmlChar *pub_id,
|
||||
const xmlChar *sys_id,
|
||||
const xmlChar *notation)
|
||||
{
|
||||
XML_Parser parser = (XML_Parser) user;
|
||||
@ -205,7 +205,7 @@ _unparsed_entity_decl_handler(void *user,
|
||||
}
|
||||
|
||||
static void
|
||||
_notation_decl_handler(void *user, const xmlChar *notation, const xmlChar *sys_id, const xmlChar *pub_id)
|
||||
_notation_decl_handler(void *user, const xmlChar *notation, const xmlChar *pub_id, const xmlChar *sys_id)
|
||||
{
|
||||
XML_Parser parser = (XML_Parser) user;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user