aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_upload.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-03-08 15:49:13 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-03-08 15:49:13 +0000
commitfcec5b61daecb4a0174418d3851ee1e0e8a0d93c (patch)
tree9c91c227d7110f962b5a469d2632c7898e0e8848 /phpBB/includes/functions_upload.php
parent738d26f92c56198a22b3088bf1b0c3b641a990db (diff)
downloadforums-fcec5b61daecb4a0174418d3851ee1e0e8a0d93c.tar
forums-fcec5b61daecb4a0174418d3851ee1e0e8a0d93c.tar.gz
forums-fcec5b61daecb4a0174418d3851ee1e0e8a0d93c.tar.bz2
forums-fcec5b61daecb4a0174418d3851ee1e0e8a0d93c.tar.xz
forums-fcec5b61daecb4a0174418d3851ee1e0e8a0d93c.zip
again... some more fixes.
git-svn-id: file:///svn/phpbb/trunk@7150 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r--phpBB/includes/functions_upload.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php
index 1dd40f3f1c..e07c91e8d0 100644
--- a/phpBB/includes/functions_upload.php
+++ b/phpBB/includes/functions_upload.php
@@ -337,6 +337,12 @@ class filespec
$this->error[] = sprintf($user->lang['IMAGE_FILETYPE_MISMATCH'], $types[$this->image_info[2]][0], $this->extension);
}
}
+
+ // Make sure the dimensions match a valid image
+ if ($this->width < 2 || $this->height < 2)
+ {
+ $this->error[] = $user->lang['ATTACHED_IMAGE_NOT_IMAGE'];
+ }
}
else
{