mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-02-17 19:29:28 +01:00
Fix _() string
This commit is contained in:
parent
2cf0a81286
commit
37f7406db8
2
post.php
2
post.php
@ -579,7 +579,7 @@ elseif (isset($_POST['post'])) {
|
||||
if (!$mod && mb_strlen($post['body']) > $config['max_body'])
|
||||
error($config['error']['toolong_body']);
|
||||
if (mb_strlen($post['body']) < $config['min_body'] && $post['op'])
|
||||
error(_(sprintf('OP must be at least %d chars on this board.', $config['min_body'])));
|
||||
error(sprintf(_('OP must be at least %d chars on this board.'), $config['min_body']));
|
||||
if (mb_strlen($post['password']) > 20)
|
||||
error(sprintf($config['error']['toolong'], 'password'));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user