1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 09:20:58 +01:00
This commit is contained in:
8chan 2015-01-22 08:04:12 +00:00
parent 61d25a586b
commit 138f9aeb40
3 changed files with 12 additions and 1 deletions

11
.gitignore vendored
View File

@ -45,3 +45,14 @@ favicon.ico
/static/spoiler.png
/inc/locale/ja_JP/*
#json
/boards.json
/boards-top20.json
/8archive.json
/tags.json
#board specific files
/*/main.js
/*/rules.txt
/stylesheets/board/*.css

View File

@ -33,6 +33,7 @@ class Api {
'sticky' => 'sticky',
'locked' => 'locked',
'bump' => 'last_modified',
'embed' => 'embed',
);
$this->threadsPageFields = array(

View File

@ -433,7 +433,6 @@ class Post {
'clean_local_mod_id' => null,
'clean_global_mod_id' => null,
);
if ($config['cache']['enabled'])
cache::set("post_clean_{$board['uri']}_{$this->id}", $this->clean);
}