forked from GithubBackups/vichan
Update post.php
This commit is contained in:
parent
24491cf3c4
commit
dc7a507526
13
post.php
13
post.php
@ -384,7 +384,20 @@ if (isset($_POST['delete'])) {
|
|||||||
if (!$resp->is_valid) {
|
if (!$resp->is_valid) {
|
||||||
error($config['error']['captcha']);
|
error($config['error']['captcha']);
|
||||||
}
|
}
|
||||||
|
// Same, but now with our custom captcha provider
|
||||||
|
if (($config['captcha']['enabled']) || (($post['op']) && ($config['new_thread_capt'])) ) {
|
||||||
|
$resp = file_get_contents($config['captcha']['provider_check'] . "?" . http_build_query([
|
||||||
|
'mode' => 'check',
|
||||||
|
'text' => $_POST['captcha_text'],
|
||||||
|
'extra' => $config['captcha']['extra'],
|
||||||
|
'cookie' => $_POST['captcha_cookie']
|
||||||
|
]));
|
||||||
|
if ($resp !== '1') {
|
||||||
|
error($config['error']['captcha'] .
|
||||||
|
'<script>if (actually_load_captcha !== undefined) actually_load_captcha("'.$config['captcha']['provider_get'].'", "'.$config['captcha']['extra'].'");</script>');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!(($post['op'] && $_POST['post'] == $config['button_newtopic']) ||
|
if (!(($post['op'] && $_POST['post'] == $config['button_newtopic']) ||
|
||||||
(!$post['op'] && $_POST['post'] == $config['button_reply'])))
|
(!$post['op'] && $_POST['post'] == $config['button_reply'])))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user