Browse Source

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.

pull/40/head
Benjamin Southall 7 years ago
parent
commit
a83a284e1d
  1. 9
      templates/themes/ukko/theme.php
  2. 14
      templates/themes/ukko2/theme.php
  3. 11
      templates/themes/ukko3/theme.php

9
templates/themes/ukko/theme.php

@ -139,6 +139,12 @@
$jsonFilename = $board['dir'] . 'threads.json';
file_write($jsonFilename, $json);
}
$antibot = null;
if (!$antibot) {
$antibot = create_antibot($board['uri']);
}
$antibot->reset();
return Element('index.html', array(
'config' => $config,
'board' => $board,
@ -146,7 +152,8 @@
'body' => $body,
'mod' => $mod,
'boardlist' => createBoardlist($mod),
'boards' => $boardsforukko )
'boards' => $boardsforukko,
'antibot' => $antibot )
);
}

14
templates/themes/ukko2/theme.php

@ -44,7 +44,6 @@
'name' => $this->settings['title'],
'title' => sprintf($this->settings['subtitle'], $this->settings['thread_limit'])
);
$boardsforukko2 = array();
$query = '';
foreach($boards as &$_board) {
@ -138,15 +137,22 @@
$json = json_encode($api->translateCatalog($catalog, true));
$jsonFilename = $board['dir'] . 'threads.json';
file_write($jsonFilename, $json);
}
}
$antibot = null;
if (!$antibot) {
$antibot = create_antibot($board['uri']);
}
$antibot->reset();
return Element('index.html', array(
'config' => $config,
'board' => $board,
'no_post_form' => $config['overboard_post_form'] ? false : true,
'no_post_form' => $config['overboard_post_form'] ? false : true,
'body' => $body,
'mod' => $mod,
'boardlist' => createBoardlist($mod),
'boards' => $boardsforukko2 )
'boards' => $boardsforukko2,
'antibot' => $antibot )
);
}

11
templates/themes/ukko3/theme.php

@ -138,7 +138,13 @@
$json = json_encode($api->translateCatalog($catalog, true));
$jsonFilename = $board['dir'] . 'threads.json';
file_write($jsonFilename, $json);
}
}
$antibot = null;
if (!$antibot) {
$antibot = create_antibot($board['uri']);
}
$antibot->reset();
return Element('index.html', array(
'config' => $config,
'board' => $board,
@ -146,7 +152,8 @@
'body' => $body,
'mod' => $mod,
'boardlist' => createBoardlist($mod),
'boards' => $boardsforukko3 )
'boards' => $boardsforukko3,
'antibot' => $antibot )
);
}

Loading…
Cancel
Save