Fix indexes php issue
This commit is contained in:
parent
c584db474f
commit
6741e5a0d4
1 changed files with 1 additions and 1 deletions
|
@ -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>";
|
||||
|
|
Loading…
Reference in a new issue