forked from leftypol/leftypol
(2/2) advanced build. implement a daemon that will build static pages.
implement a queue and a lock. fix notice in bans. and it even works! the daemon is basic right now, it could work in a mode that it will defer building certain pages until a certain time.
This commit is contained in:
parent
e265375475
commit
12e6aba5d4
6 changed files with 76 additions and 8 deletions
|
@ -166,7 +166,7 @@ class Bans {
|
|||
|
||||
if ($ban['post']) {
|
||||
$post = json_decode($ban['post']);
|
||||
$ban['message'] = $post->body;
|
||||
$ban['message'] = isset($post->body) ? $post->body : 0;
|
||||
}
|
||||
unset($ban['ipstart'], $ban['ipend'], $ban['post'], $ban['creator']);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue