bug fix for recent theme
This commit is contained in:
parent
2babc137e9
commit
2234c1ecea
11
post.php
11
post.php
@ -486,7 +486,6 @@
|
|||||||
clean();
|
clean();
|
||||||
|
|
||||||
buildIndex();
|
buildIndex();
|
||||||
sql_close();
|
|
||||||
|
|
||||||
// Tell Javascript that we posted successfully
|
// Tell Javascript that we posted successfully
|
||||||
if(isset($_COOKIE[$config['cookies']['js']]))
|
if(isset($_COOKIE[$config['cookies']['js']]))
|
||||||
@ -501,11 +500,17 @@
|
|||||||
$root = $post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'];
|
$root = $post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'];
|
||||||
|
|
||||||
if($config['always_noko'] || $noko) {
|
if($config['always_noko'] || $noko) {
|
||||||
header('Location: ' . $root . $board['dir'] . $config['dir']['res'] . ($OP?$id:$post['thread']) . '.html' . (!$OP?'#'.$id:''), true, $config['redirect_http']);
|
$redirect = $root . $board['dir'] . $config['dir']['res'] . ($OP?$id:$post['thread']) . '.html' . (!$OP?'#'.$id:'');
|
||||||
} else {
|
} else {
|
||||||
header('Location: ' . $root . $board['dir'] . $config['file_index'], true, $config['redirect_http']);
|
$redirect = $root . $board['dir'] . $config['file_index'];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rebuildTheme('post');
|
||||||
|
header('Location: ' . $redirect, true, $config['redirect_http']);
|
||||||
|
|
||||||
|
sql_close();
|
||||||
|
|
||||||
exit;
|
exit;
|
||||||
} else {
|
} else {
|
||||||
if(!file_exists($config['has_installed'])) {
|
if(!file_exists($config['has_installed'])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user