更新 v1.8.5

This commit is contained in:
LyLme 2024-01-09 12:28:48 +08:00
parent a6c3619cec
commit ab49b62460

View File

@ -84,13 +84,11 @@ if($sqlvn < $filevn) {
if (!isset($conf['about'])) { if (!isset($conf['about'])) {
$about_file = ROOT . 'about/about.txt'; $about_file = ROOT . 'about/about.txt';
if(file_exists($about_file)) { if(file_exists($about_file)) {
$about = file_get_contents($about_file); $about_content = daddslashes(file_get_contents($about_file));
} else { $about_content = str_replace(PHP_EOL, '\r\n', $about_content);
$about = "INSERT INTO `lylme_config` (`id`, `k`, `v`, `description`) VALUES (NULL, 'about', '<h3>关于本站</h3>\r\n<p>感谢来访,本站致力于简洁高效的上网导航和搜索入口,安全快捷。</p>\r\n<p>如果您喜欢我们的网站,请将本站添加到收藏夹(快捷键<code>Ctrl+D</code>),并<a href=\"https://jingyan.baidu.com/article/4dc40848868eba89d946f1c0.html\" target=\"_blank\">设为浏览器主页</a>,方便您的下次访问,感谢支持。<p>\r\n<hr>\r\n<h3>本站承诺</h3>\r\n<p><strong>绝对不会收集用户的隐私信息</strong><p>\r\n<p>区别于部分导航网站,本站链接直接跳转目标,不会对链接处理再后跳转,不会收集用户的隐藏信息,包括但不限于点击记录,访问记录和搜索记录,请放心使用</p>\r\n<hr>\r\n<h3>申请收录</h3>\r\n<p>请点<a href=\"../apply\" target=\"_blank\">这里</a></p>\r\n<hr>\r\n<h3>联系我们</h3>\r\n<p>若您在使用本站时遇到了包括但不限于以下问题:</p>\r\n<li>图标缺失</li>\r\n<li>目标网站无法打开</li>\r\n<li>描述错误</li>\r\n<li>网站违规</li>\r\n<li>收录加急处理</li>\r\n<li>链接删除</li>\r\n<p><strong>请发邮件与我们联系</strong></p>\r\n<h5>联系邮箱</h5>\r\n<p><a href=\"mailto:无\">无</a></p>\r\n<h5>联系说明</h5>\r\n<p>为了您的问题能快速被处理,建议在邮件主题添加【反馈】【投诉】【推荐】【友链】</p>', NULL)"; $about = "INSERT INTO `lylme_config` (`id`, `k`, `v`, `description`) VALUES (NULL, 'about', '" . $about_content . "', NULL)";
} }
$DB->query(daddslashes($about)); $DB->query(daddslashes($about));
@unlink($about_file);
@unlink(ROOT . 'about/说明.txt'); @unlink(ROOT . 'about/说明.txt');
} }