aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_upload.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-20 18:39:35 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-20 18:39:35 +0000
commit5029170afbe7e74a0c46b3b3f1ecca83697ced42 (patch)
tree4762e7d8d4d3b723d681f0bf5a88f65b266978b2 /phpBB/includes/functions_upload.php
parent037f0bf4da281981dd5bc0e217325d2c49531409 (diff)
downloadforums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar.gz
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar.bz2
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar.xz
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.zip
- fixed a few smaller things
git-svn-id: file:///svn/phpbb/trunk@5952 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r--phpBB/includes/functions_upload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php
index 8b67769847..8b59cfa5c7 100644
--- a/phpBB/includes/functions_upload.php
+++ b/phpBB/includes/functions_upload.php
@@ -307,7 +307,7 @@ class filespec
if (!$this->upload->valid_dimensions($this))
{
- $this->error[] = sprintf($user->lang[$this->upload->error_prefix . 'WRONG_SIZE'], $this->upload->min_width, $this->upload->min_height, $this->upload->max_width, $this->upload->max_height);
+ $this->error[] = sprintf($user->lang[$this->upload->error_prefix . 'WRONG_SIZE'], $this->upload->min_width, $this->upload->min_height, $this->upload->max_width, $this->upload->max_height, $this->width, $this->height);
}
}
}