mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
endElementHandler had three parameters in examples. Change to two parameters
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@10411 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
8116120c33
commit
9a706091ba
1 changed files with 2 additions and 2 deletions
|
@ -262,7 +262,7 @@ function startElement($parser, $name, $attrs)
|
|||
$depth[$parser]++;
|
||||
}
|
||||
|
||||
function endElement($parser, $name, $attrs)
|
||||
function endElement($parser, $name)
|
||||
{
|
||||
global $depth;
|
||||
$depth[$parser]--;
|
||||
|
@ -311,7 +311,7 @@ function startElement($parser, $name, $attrs)
|
|||
}
|
||||
}
|
||||
|
||||
function endElement($parser, $name, $attrs)
|
||||
function endElement($parser, $name)
|
||||
{
|
||||
global $map_array;
|
||||
if ($htmltag = $map_array[$name]) {
|
||||
|
|
Loading…
Reference in a new issue