1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-31 04:13:49 +01:00

Made default max image size 10000x10000

This commit is contained in:
Savetheinternet 2011-02-16 21:13:32 +11:00
parent 59f3c2d674
commit 88cbe258fe

View File

@ -135,7 +135,7 @@
// Maximum image upload size in bytes
$config['max_filesize'] = 10*1024*1024; // 10MB
// Maximum image dimensions
$config['max_width'] = 1000;
$config['max_width'] = 10000;
$config['max_height'] = $config['max_width']; // 1:1
/**