Browse Source

Allow smaller pictures to be declared as valid pictures

pull/305/head
Jaussoin Timothée 9 years ago
parent
commit
25725b86bd
  1. 2
      src/Movim/Task/CheckSmallPicture.php

2
src/Movim/Task/CheckSmallPicture.php

@ -32,7 +32,7 @@ class CheckSmallPicture extends Engine {
$typearr = explode('/', $type);
return ($typearr[0] == 'image'
&& $length <= $size
&& $length >= 10000);
&& $length >= 5000);
}
return false;

Loading…
Cancel
Save