Better implementation of getting shared folder size by using the source path

This commit is contained in:
Michael Gapczynski 2011-06-24 19:52:35 -04:00
parent c8781b1caf
commit 78293ea244
1 changed files with 3 additions and 2 deletions

View File

@ -151,7 +151,8 @@ class OC_FILESTORAGE_SHARED {
if ($path == "" || $path == "/") {
$dbpath = $_SESSION['user_id']."/files/Share/";
} else {
$dbpath = substr(OC_SHARE::getSource($path), 1);
$source = OC_SHARE::getSource($path);
$dbpath = $this->getInternalPath($source);
}
$query = OC_DB::prepare("SELECT size FROM *PREFIX*foldersize WHERE path=?");
$size = $query->execute(array($dbpath))->fetchAll();