Merge pull request #12264 from owncloud/use-full-path-for-filesize-calculation

Use full path instead of only the filename
This commit is contained in:
Lukas Reschke 2014-11-18 18:11:31 +01:00
commit 3b0a7574d6
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class ShareController extends Controller {
$shareTmpl['server2serversharing'] = Helper::isOutgoingServer2serverShareEnabled();
$shareTmpl['protected'] = isset($linkItem['share_with']) ? 'true' : 'false';
$shareTmpl['dir'] = $dir;
$shareTmpl['fileSize'] = \OCP\Util::humanFileSize(\OC\Files\Filesystem::filesize($file));
$shareTmpl['fileSize'] = \OCP\Util::humanFileSize(\OC\Files\Filesystem::filesize($originalSharePath));
// Show file list
if (Filesystem::is_dir($originalSharePath)) {