1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-31 12:23:48 +01:00

Tweak flag size requirements

This commit is contained in:
8chan 2014-12-20 07:01:40 -08:00
parent 5b5a0b9061
commit 025713547c

View File

@ -262,7 +262,7 @@
error($config['error']['invalidimg']);
}
if ($size[0] > 20 or $size[0] < 11 or $size[1] != 11){
if ($size[0] > 20 or $size[0] < 11 or $size[1] > 16 or $size[1] < 11){
error(_('Image wrong size!'));
}
if (sizeof($banners) > 256) {