DashboardFE

This commit is contained in:
daisuke
2021-03-27 12:01:13 -06:00
parent d62e41ef47
commit ed37590c5f
8 changed files with 55 additions and 8 deletions

View File

@ -352,7 +352,11 @@ if ((!isset($thread[0]['id']) && !empty($thread)) || !is_array($thread)) {
$post['template'] = themes("get","templates/textpost.txt");
}
else {
$post['template'] = themes("get","templates/post.txt");
if ($logedin){
$post['template'] = themes("get","templates/post.txt");
} else {
$post['template'] = themes("get","templates/post_logout.txt");
}
}
foreach ($post as $key => $value) {