1
0
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:
Fredrick Brennan 2015-04-04 10:37:11 +08:00
parent 2cf0a81286
commit 37f7406db8

View File

@ -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'));