remove unecessary dots
This commit is contained in:
parent
2d9c7b7dd4
commit
2254568e33
1 changed files with 2 additions and 2 deletions
|
|
@ -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 .= '<a href="./?'.$file.'">./?'.$file.'</a><br />';
|
||||
$content = '<a href="./?'.$file.'">./?'.$file.'</a><br />';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue