summaryrefslogtreecommitdiff
path: root/program/include/rcmail.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-20 15:08:10 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-20 15:08:10 +0200
commit39b905b7a8abafe57f5429952db390a97ffa047f (patch)
tree6dbfb024d6441f873e4736c3d3cdc7d430c027eb /program/include/rcmail.php
parent976ba376a94db6ac0891bc02437cea9f9cc08093 (diff)
Canonize boolean ini_get() results (#1489189)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index eff0425c8..a0027ec54 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -1760,7 +1760,8 @@ class rcmail extends rcube
public function upload_init()
{
// Enable upload progress bar
- if (($seconds = $this->config->get('upload_progress')) && ini_get('apc.rfc1867')) {
+ $rfc1867 = filter_var(ini_get('apc.rfc1867'), FILTER_VALIDATE_BOOLEAN);
+ if ($rfc1867 && ($seconds = $this->config->get('upload_progress'))) {
if ($field_name = ini_get('apc.rfc1867_name')) {
$this->output->set_env('upload_progress_name', $field_name);
$this->output->set_env('upload_progress_time', (int) $seconds);