diff --git a/index.php b/index.php index 8c7b6ee..07c9fdd 100644 --- a/index.php +++ b/index.php @@ -31,12 +31,12 @@ if(!empty($_GET['url'])) { $findfiles = glob($hashfilepath . '*'); if(empty($findfiles)) { - $content .= 'No files.'; + $content = 'No files.'; return 1; } else if (count($findfiles) > 1) { foreach($findfiles as $file) { $file = str_replace('/', '', substr($file, 5)); - $content .= './?'.$file.'
'; + $content = './?'.$file.'
'; } }