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:
Uwe Steinmann 1999-07-07 13:00:31 +00:00
parent 8116120c33
commit 9a706091ba

View file

@ -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]) {