scratch that niche!

Small typo in source code of XML book….

Here’s another errata notice. Sharp-eyed reader in the Netherlands Andries Blauuw noticed that rpcserver.php wasn’t working too well.

On line 18, he saw this line as the culprit:


while (($file = readdir($handle)) !== FALSE)) {

Andries removed the extra parentheses after FALSE and ended up with:


while (($file = readdir($handle)) !== FALSE) {

No comments yet. Be the first.

Leave a reply