Fix indexes php issue

This commit is contained in:
Victor Shcherb 2012-01-08 14:42:03 +01:00
parent c584db474f
commit 6741e5a0d4

View file

@ -47,7 +47,7 @@
if($res && $res->length > 0) {
foreach($res as $node) {
if (!file_exists('indexes/'.$node->getAttribute('name') && !$node->getAttribute('local'))) {
if (!file_exists('indexes/'.$node->getAttribute('name')) && !$node->getAttribute('local')) {
echo "<tr><td>".$node->getAttribute('name')."</td><td>".$node->getAttribute('date').
"</td><td>".$node->getAttribute('size')."</td><td>".
$node->getAttribute('description')."</td></tr>";