Fixed error in example.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@291751 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gustavo André dos Santos Lopes 2009-12-05 23:34:43 +00:00
parent 35526d5c13
commit 5ab48bfb18

View file

@ -43,7 +43,7 @@
//Open file, get entry and store in variable $e...
//...
$isDirectory = (bool) ((($e->getHostOs() == RAR_HOST_WIN32) && ($e->getAttr() & 0x10)) &&
$isDirectory = (bool) ((($e->getHostOs() == RAR_HOST_WIN32) && ($e->getAttr() & 0x10)) ||
(($e->getHostOs() == RAR_HOST_UNIX) && (($e->getAttr() & 0xf000) == 0x4000)));
]]>
</programlisting>