This commit is contained in:
Roman Kelesidis 2025-05-31 09:39:31 +03:00
commit b8c047616f
3 changed files with 7 additions and 1 deletions

View file

@ -45,6 +45,9 @@ if ($bb_cfg['show_network_news']) {
// Init userdata
$user->session_start();
// Set meta description
$page_cfg['meta_description'] = $bb_cfg['site_desc'];
// Init main vars
$viewcat = isset($_GET[POST_CAT_URL]) ? (int)$_GET[POST_CAT_URL] : 0;
$lastvisit = IS_GUEST ? TIMENOW : $userdata['user_lastvisit'];

View file

@ -123,7 +123,7 @@ $template->assign_vars([
'USE_TABLESORTER' => !empty($page_cfg['use_tablesorter']),
'ALLOW_ROBOTS' => !$bb_cfg['board_disable'] && (!isset($page_cfg['allow_robots']) || $page_cfg['allow_robots'] === true),
'META_DESCRIPTION' => $page_cfg['meta_description'] ?? $bb_cfg['site_desc'],
'META_DESCRIPTION' => $page_cfg['meta_description'] ?? '',
'SITENAME' => $bb_cfg['sitename'],
'U_INDEX' => BB_ROOT . 'index.php',

View file

@ -116,6 +116,9 @@ $topic_attachment = isset($t_data['topic_attachment']) ? (int)$t_data['topic_att
// Allow robots indexing
$page_cfg['allow_robots'] = (bool)$t_data['topic_allow_robots'];
// Set meta description
$page_cfg['meta_description'] = '';
if ($t_data['allow_porno_topic'] && bf($userdata['user_opt'], 'user_opt', 'user_porn_forums')) {
bb_die($lang['ERROR_PORNO_FORUM']);
}