From df8b22b04c48fdb8bf76e1df3a5cd4c711035756 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Thu, 26 Oct 2023 22:46:39 +0700 Subject: [PATCH] Updated --- install/sql/mysql.sql | 1 + library/includes/page_footer.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/install/sql/mysql.sql b/install/sql/mysql.sql index 46097ba2..47c28a73 100644 --- a/install/sql/mysql.sql +++ b/install/sql/mysql.sql @@ -1131,6 +1131,7 @@ CREATE TABLE IF NOT EXISTS `bb_topics_watch` ( -- ---------------------------- -- Records of bb_topics_watch -- ---------------------------- +INSERT INTO `bb_topics_watch` VALUES ('1', '2', '1'); -- ---------------------------- -- Table structure for `bb_topic_tpl` diff --git a/library/includes/page_footer.php b/library/includes/page_footer.php index 6dd1bac3..35138725 100644 --- a/library/includes/page_footer.php +++ b/library/includes/page_footer.php @@ -10,7 +10,7 @@ if (!empty($template)) $template->assign_vars(array( 'SIMPLE_FOOTER' => !empty($gen_simple_header), - 'POWERED' => 'Powered by TorrentPier II LTS © 2005-' . date('Y') . (isset($birthday_tp) ? $birthday_tp : ''), + 'POWERED' => 'Powered by TorrentPier II © 2005-' . date('Y') . (isset($birthday_tp) ? $birthday_tp : ''), 'SHOW_ADMIN_LINK' => (IS_ADMIN && !defined('IN_ADMIN')), 'ADMIN_LINK_HREF' => "admin/index.php", ));