forked from leftypol/leftypol
Add image_reject_repost_in_thread option
This commit is contained in:
parent
ced540a66e
commit
91e8547b04
3 changed files with 46 additions and 12 deletions
|
@ -445,8 +445,10 @@
|
|||
// Maximum image dimensions
|
||||
$config['max_width'] = 10000;
|
||||
$config['max_height'] = $config['max_width']; // 1:1
|
||||
// Reject dupliate image uploads
|
||||
// Reject duplicate image uploads
|
||||
$config['image_reject_repost'] = true;
|
||||
// Reject duplicate image uploads within the same thread. Doesn't change anything if image_reject_repost is true.
|
||||
$config['image_reject_repost_in_thread'] = false;
|
||||
|
||||
// Display the aspect ratio in a post's file info
|
||||
$config['show_ratio'] = false;
|
||||
|
@ -667,6 +669,7 @@
|
|||
$config['error']['maxsize'] = _('The file was too big.');
|
||||
$config['error']['invalidzip'] = _('Invalid archive!');
|
||||
$config['error']['fileexists'] = _('That file <a href="%s">already exists</a>!');
|
||||
$config['error']['fileexistsinthread'] = _('That file <a href="%s">already exists</a> in this thread!');
|
||||
$config['error']['delete_too_soon'] = _('You\'ll have to wait another %s before deleting that.');
|
||||
$config['error']['mime_exploit'] = _('MIME type detection XSS exploit (IE) detected; post discarded.');
|
||||
$config['error']['invalid_embed'] = _('Couldn\'t make sense of the URL of the video you tried to embed.');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue