Alias functions usage.

This commit is contained in:
Yuriy Pikhtarev 2017-05-09 20:57:12 +03:00
commit dcb828d983
No known key found for this signature in database
GPG key ID: 3A9B5A757B48ECC6
3 changed files with 9 additions and 9 deletions

View file

@ -89,7 +89,7 @@ class TorrentFileList
$filelist = $html->array2html($this->files_ary);
return "<div class=\"tor-root-dir\">{$this->root_dir}</div>$filelist";
} else {
return join('', $this->files_ary['/']);
return implode('', $this->files_ary['/']);
}
}