Merge pull request #5717 from owncloud/files-foldericonforhomestorage

Fixed folder icon for home storage
This commit is contained in:
Vincent Petry 2013-11-06 06:39:48 -08:00
commit 6b6a46589e
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Helper
if ($sid[0] === 'shared') { if ($sid[0] === 'shared') {
return \OC_Helper::mimetypeIcon('dir-shared'); return \OC_Helper::mimetypeIcon('dir-shared');
} }
if ($sid[0] !== 'local') { if ($sid[0] !== 'local' and $sid[0] !== 'home') {
return \OC_Helper::mimetypeIcon('dir-external'); return \OC_Helper::mimetypeIcon('dir-external');
} }
} }