Skip to content

Commit

Permalink
fix Bug #3949: reset does not return true on success as the documenta…
Browse files Browse the repository at this point in the history
…tion states

git-svn-id: http://svn.php.net/repository/pear/packages/XML_Parser/trunk@182842 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Stephan Schmidt committed Mar 25, 2005
1 parent 5fd56b4 commit 867ef83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Parser.php
Expand Up @@ -356,6 +356,7 @@ function reset()
if ($this->isError( $result )) {
return $result;
}
return true;
}

// }}}
Expand Down
1 change: 1 addition & 0 deletions Parser/Simple.php
Expand Up @@ -182,6 +182,7 @@ function reset()
if ($this->isError( $result )) {
return $result;
}
return true;
}

/**
Expand Down

0 comments on commit 867ef83

Please sign in to comment.