Bugfix: Anti-bot check not allowing posting from second page
This commit is contained in:
parent
bceb314ce6
commit
85578b7105
@ -152,6 +152,10 @@ class AntiBot {
|
|||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function reset() {
|
||||||
|
$this->index = 0;
|
||||||
|
}
|
||||||
|
|
||||||
public function hash() {
|
public function hash() {
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
|
@ -1213,18 +1213,17 @@ function buildIndex() {
|
|||||||
|
|
||||||
$page = 1;
|
$page = 1;
|
||||||
while ($page <= $config['max_pages'] && $content = index($page)) {
|
while ($page <= $config['max_pages'] && $content = index($page)) {
|
||||||
$filename = $board['dir'] . ($page==1 ? $config['file_index'] : sprintf($config['file_page'], $page));
|
$filename = $board['dir'] . ($page == 1 ? $config['file_index'] : sprintf($config['file_page'], $page));
|
||||||
if (file_exists($filename)) $md5 = md5_file($filename);
|
|
||||||
|
$antibot->reset();
|
||||||
|
|
||||||
$content['pages'] = $pages;
|
$content['pages'] = $pages;
|
||||||
$content['pages'][$page-1]['selected'] = true;
|
$content['pages'][$page-1]['selected'] = true;
|
||||||
$content['btn'] = getPageButtons($content['pages']);
|
$content['btn'] = getPageButtons($content['pages']);
|
||||||
$content['antibot'] = $antibot;
|
$content['antibot'] = $antibot;
|
||||||
|
|
||||||
file_write($filename, Element('index.html', $content));
|
file_write($filename, Element('index.html', $content));
|
||||||
|
|
||||||
if (isset($md5) && $md5 == md5_file($filename)) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$page++;
|
$page++;
|
||||||
}
|
}
|
||||||
if ($page < $config['max_pages']) {
|
if ($page < $config['max_pages']) {
|
||||||
|
Loading…
Reference in New Issue
Block a user