This commit is contained in:
Roman Kelesidis 2023-10-26 22:46:39 +07:00
parent e176f46b4e
commit df8b22b04c
2 changed files with 2 additions and 1 deletions

View File

@ -1131,6 +1131,7 @@ CREATE TABLE IF NOT EXISTS `bb_topics_watch` (
-- ---------------------------- -- ----------------------------
-- Records of bb_topics_watch -- Records of bb_topics_watch
-- ---------------------------- -- ----------------------------
INSERT INTO `bb_topics_watch` VALUES ('1', '2', '1');
-- ---------------------------- -- ----------------------------
-- Table structure for `bb_topic_tpl` -- Table structure for `bb_topic_tpl`

View File

@ -10,7 +10,7 @@ if (!empty($template))
$template->assign_vars(array( $template->assign_vars(array(
'SIMPLE_FOOTER' => !empty($gen_simple_header), 'SIMPLE_FOOTER' => !empty($gen_simple_header),
'POWERED' => 'Powered by <a target="_blank" href="https://torrentpier.com">TorrentPier II LTS</a> &copy; 2005-' . date('Y') . (isset($birthday_tp) ? $birthday_tp : ''), 'POWERED' => 'Powered by <a target="_blank" href="https://torrentpier.com">TorrentPier II</a> &copy; 2005-' . date('Y') . (isset($birthday_tp) ? $birthday_tp : ''),
'SHOW_ADMIN_LINK' => (IS_ADMIN && !defined('IN_ADMIN')), 'SHOW_ADMIN_LINK' => (IS_ADMIN && !defined('IN_ADMIN')),
'ADMIN_LINK_HREF' => "admin/index.php", 'ADMIN_LINK_HREF' => "admin/index.php",
)); ));