From ec7e33870441f81f10385ca0329e7a91fcf3ae45 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Sun, 17 Apr 2011 18:14:26 +0200 Subject: [PATCH] display max file size for upload --- files/index.php | 5 ++++- files/templates/index.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/files/index.php b/files/index.php index 28743f77fca..c0f078bd215 100644 --- a/files/index.php +++ b/files/index.php @@ -61,11 +61,14 @@ $list->assign( "files", $files ); $breadcrumbNav = new OC_TEMPLATE( "files", "part.breadcrumb", "" ); $breadcrumbNav->assign( "breadcrumb", $breadcrumb ); +$maxUploadFilesize = OC_HELPER::computerFileSize(ini_get('upload_max_filesize')); + $tmpl = new OC_TEMPLATE( "files", "index", "user" ); $tmpl->assign( "fileList", $list->fetchPage() ); $tmpl->assign( "breadcrumb", $breadcrumbNav->fetchPage() ); $tmpl->assign( 'dir', $dir); -$tmpl->assign( 'uploadMaxFilesize', OC_HELPER::computerFileSize(ini_get('upload_max_filesize'))); +$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); +$tmpl->assign( 'uploadMaxHumanFilesize', OC_HELPER::humanFileSize($maxUploadFilesize)); $tmpl->printPage(); ?> diff --git a/files/templates/index.php b/files/templates/index.php index c6dc123cee0..b556da5513d 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -11,7 +11,7 @@ method="post" enctype="multipart/form-data" target="file_upload_target">" id="max_upload">" id="dir">
 
-- 2.39.5