;_;
This commit is contained in:
parent
ddd34347f8
commit
ed142a5e5d
@ -8,7 +8,8 @@
|
|||||||
* Class for generating json API compatible with 4chan API
|
* Class for generating json API compatible with 4chan API
|
||||||
*/
|
*/
|
||||||
class Api {
|
class Api {
|
||||||
function __construct($config){
|
function __construct(){
|
||||||
|
global $config;
|
||||||
/**
|
/**
|
||||||
* Translation from local fields to fields in 4chan-style API
|
* Translation from local fields to fields in 4chan-style API
|
||||||
*/
|
*/
|
||||||
|
@ -1296,7 +1296,7 @@ function buildIndex() {
|
|||||||
$antibot = create_antibot($board['uri']);
|
$antibot = create_antibot($board['uri']);
|
||||||
|
|
||||||
if ($config['api']['enabled']) {
|
if ($config['api']['enabled']) {
|
||||||
$api = new Api($config);
|
$api = new Api();
|
||||||
$catalog = array();
|
$catalog = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1771,7 +1771,7 @@ function buildThread($id, $return = false, $mod = false) {
|
|||||||
|
|
||||||
// json api
|
// json api
|
||||||
if ($config['api']['enabled']) {
|
if ($config['api']['enabled']) {
|
||||||
$api = new Api($config);
|
$api = new Api();
|
||||||
$json = json_encode($api->translateThread($thread));
|
$json = json_encode($api->translateThread($thread));
|
||||||
$jsonFilename = $board['dir'] . $config['dir']['res'] . $id . ".json";
|
$jsonFilename = $board['dir'] . $config['dir']['res'] . $id . ".json";
|
||||||
file_write($jsonFilename, $json);
|
file_write($jsonFilename, $json);
|
||||||
|
Loading…
Reference in New Issue
Block a user