Add antibot to Element constructor in yukko themes, in the hope that posting from overboards as a normal user is not incorrectly blocked as spam / request looks automated.
This commit is contained in:
parent
fef6f0bef9
commit
a83a284e1d
@ -139,6 +139,12 @@
|
|||||||
$jsonFilename = $board['dir'] . 'threads.json';
|
$jsonFilename = $board['dir'] . 'threads.json';
|
||||||
file_write($jsonFilename, $json);
|
file_write($jsonFilename, $json);
|
||||||
}
|
}
|
||||||
|
$antibot = null;
|
||||||
|
if (!$antibot) {
|
||||||
|
$antibot = create_antibot($board['uri']);
|
||||||
|
}
|
||||||
|
$antibot->reset();
|
||||||
|
|
||||||
return Element('index.html', array(
|
return Element('index.html', array(
|
||||||
'config' => $config,
|
'config' => $config,
|
||||||
'board' => $board,
|
'board' => $board,
|
||||||
@ -146,7 +152,8 @@
|
|||||||
'body' => $body,
|
'body' => $body,
|
||||||
'mod' => $mod,
|
'mod' => $mod,
|
||||||
'boardlist' => createBoardlist($mod),
|
'boardlist' => createBoardlist($mod),
|
||||||
'boards' => $boardsforukko )
|
'boards' => $boardsforukko,
|
||||||
|
'antibot' => $antibot )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +44,6 @@
|
|||||||
'name' => $this->settings['title'],
|
'name' => $this->settings['title'],
|
||||||
'title' => sprintf($this->settings['subtitle'], $this->settings['thread_limit'])
|
'title' => sprintf($this->settings['subtitle'], $this->settings['thread_limit'])
|
||||||
);
|
);
|
||||||
|
|
||||||
$boardsforukko2 = array();
|
$boardsforukko2 = array();
|
||||||
$query = '';
|
$query = '';
|
||||||
foreach($boards as &$_board) {
|
foreach($boards as &$_board) {
|
||||||
@ -138,15 +137,22 @@
|
|||||||
$json = json_encode($api->translateCatalog($catalog, true));
|
$json = json_encode($api->translateCatalog($catalog, true));
|
||||||
$jsonFilename = $board['dir'] . 'threads.json';
|
$jsonFilename = $board['dir'] . 'threads.json';
|
||||||
file_write($jsonFilename, $json);
|
file_write($jsonFilename, $json);
|
||||||
}
|
}
|
||||||
|
$antibot = null;
|
||||||
|
if (!$antibot) {
|
||||||
|
$antibot = create_antibot($board['uri']);
|
||||||
|
}
|
||||||
|
$antibot->reset();
|
||||||
|
|
||||||
return Element('index.html', array(
|
return Element('index.html', array(
|
||||||
'config' => $config,
|
'config' => $config,
|
||||||
'board' => $board,
|
'board' => $board,
|
||||||
'no_post_form' => $config['overboard_post_form'] ? false : true,
|
'no_post_form' => $config['overboard_post_form'] ? false : true,
|
||||||
'body' => $body,
|
'body' => $body,
|
||||||
'mod' => $mod,
|
'mod' => $mod,
|
||||||
'boardlist' => createBoardlist($mod),
|
'boardlist' => createBoardlist($mod),
|
||||||
'boards' => $boardsforukko2 )
|
'boards' => $boardsforukko2,
|
||||||
|
'antibot' => $antibot )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,7 +138,13 @@
|
|||||||
$json = json_encode($api->translateCatalog($catalog, true));
|
$json = json_encode($api->translateCatalog($catalog, true));
|
||||||
$jsonFilename = $board['dir'] . 'threads.json';
|
$jsonFilename = $board['dir'] . 'threads.json';
|
||||||
file_write($jsonFilename, $json);
|
file_write($jsonFilename, $json);
|
||||||
}
|
}
|
||||||
|
$antibot = null;
|
||||||
|
if (!$antibot) {
|
||||||
|
$antibot = create_antibot($board['uri']);
|
||||||
|
}
|
||||||
|
$antibot->reset();
|
||||||
|
|
||||||
return Element('index.html', array(
|
return Element('index.html', array(
|
||||||
'config' => $config,
|
'config' => $config,
|
||||||
'board' => $board,
|
'board' => $board,
|
||||||
@ -146,7 +152,8 @@
|
|||||||
'body' => $body,
|
'body' => $body,
|
||||||
'mod' => $mod,
|
'mod' => $mod,
|
||||||
'boardlist' => createBoardlist($mod),
|
'boardlist' => createBoardlist($mod),
|
||||||
'boards' => $boardsforukko3 )
|
'boards' => $boardsforukko3,
|
||||||
|
'antibot' => $antibot )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user