normalize filepaths in OC_Files::getFileInfo

This commit is contained in:
Robin Appelman 2012-11-07 22:51:45 +01:00
parent e14054610f
commit ae74c54d65
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ class OC_Files {
* - versioned
*/
public static function getFileInfo($path) {
$path = OC_Filesystem::normalizePath($path);
if (($path == '/Shared' || substr($path, 0, 8) == '/Shared/') && OC_App::isEnabled('files_sharing')) {
if ($path == '/Shared') {
list($info) = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT);