Skip to content
Snippets Groups Projects
Commit 0cde2a31 authored by Borjan Tchakaloff's avatar Borjan Tchakaloff
Browse files

Fixed the file sharing listing bug (filename is empty when it has no extension...

Fixed the file sharing listing bug (filename is empty when it has no extension in a publicly shared folder).
parent 2c95c799
Branches
No related tags found
No related merge requests found
......@@ -30,8 +30,9 @@ if ($source !== false) {
foreach (OC_Files::getdirectorycontent($source) as $i) {
$i['date'] = OC_Util::formatDate($i['mtime'] );
if ($i['type'] == 'file') {
$i['extention'] = substr($i['name'], strrpos($i['name'], "."));
$i['basename'] = substr($i['name'], 0, strrpos($i['name'], "."));
$fileinfo = pathinfo($i['name']);
$i['basename'] = $fileinfo['filename'];
$i['extention'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : '';
}
$i['directory'] = substr($i['directory'], $rootLength);
if ($i['directory'] == "/") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment