From eb98a1b4b2ccebd75924cd56cb286573186cc283 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 11 Jul 2010 20:54:26 +0200 Subject: display minimum deletion size on upload_form Signed-off-by: Florian Pritz --- system/application/controllers/file.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'system/application/controllers') diff --git a/system/application/controllers/file.php b/system/application/controllers/file.php index 67f7c0b2e..8584948b9 100644 --- a/system/application/controllers/file.php +++ b/system/application/controllers/file.php @@ -13,7 +13,7 @@ class File extends Controller { function __construct() { parent::Controller(); - $this->load->helper('form'); + $this->load->helper(array('form', 'filebin')); $this->load->model('file_mod'); $this->var->cli_client = false; $this->file_mod->var->cli_client =& $this->var->cli_client; @@ -47,6 +47,7 @@ class File extends Controller { { $data = array(); $data['title'] = 'Upload'; + $data['small_upload_size'] = $this->config->item('small_upload_size'); $this->load->view('file/header', $data); $this->load->view('file/upload_form', $data); -- cgit v1.2.3-24-g4f1b