Browse Source

模板优化

tags/6.1.0^2
xushubieli 2 years ago
parent
commit
5ba5ad3472
47 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/install/config.cache.inc.php
  2. +1
    -1
      src/install/sql-dfdata.txt
  3. +1
    -1
      src/system/common.inc.php
  4. +0
    -0
      src/theme/templets/advancedsearch.htm
  5. +0
    -0
      src/theme/templets/article_article.htm
  6. +0
    -0
      src/theme/templets/article_default.htm
  7. +0
    -0
      src/theme/templets/article_default_sg.htm
  8. +0
    -0
      src/theme/templets/article_image.htm
  9. +0
    -0
      src/theme/templets/article_infos.htm
  10. +0
    -0
      src/theme/templets/article_shop.htm
  11. +0
    -0
      src/theme/templets/article_soft.htm
  12. +0
    -0
      src/theme/templets/article_spec.htm
  13. +0
    -0
      src/theme/templets/footer.htm
  14. +0
    -0
      src/theme/templets/googlemap.htm
  15. +0
    -0
      src/theme/templets/header.htm
  16. +0
    -0
      src/theme/templets/index.htm
  17. +0
    -0
      src/theme/templets/index_article.htm
  18. +0
    -0
      src/theme/templets/index_default.htm
  19. +0
    -0
      src/theme/templets/index_default_sg.htm
  20. +0
    -0
      src/theme/templets/index_image.htm
  21. +0
    -0
      src/theme/templets/index_infos.htm
  22. +0
    -0
      src/theme/templets/index_shop.htm
  23. +0
    -0
      src/theme/templets/index_soft.htm
  24. +0
    -0
      src/theme/templets/list_article.htm
  25. +0
    -0
      src/theme/templets/list_default.htm
  26. +0
    -0
      src/theme/templets/list_default_sg.htm
  27. +0
    -0
      src/theme/templets/list_free.htm
  28. +0
    -0
      src/theme/templets/list_image.htm
  29. +0
    -0
      src/theme/templets/list_infos.htm
  30. +0
    -0
      src/theme/templets/list_shop.htm
  31. +0
    -0
      src/theme/templets/list_soft.htm
  32. +0
    -0
      src/theme/templets/list_spec.htm
  33. +0
    -0
      src/theme/templets/navbar.htm
  34. +0
    -0
      src/theme/templets/search.htm
  35. +0
    -0
      src/theme/templets/singlepage.htm
  36. +0
    -0
      src/theme/templets/tag.htm
  37. +0
    -0
      src/theme/templets/taglist.htm
  38. +0
    -0
      src/theme/templets/top.htm
  39. +0
    -0
      src/theme/templets/widget_article_digg.htm
  40. +0
    -0
      src/theme/templets/widget_article_feedback.htm
  41. +0
    -0
      src/theme/templets/widget_channels.htm
  42. +0
    -0
      src/theme/templets/widget_hot.htm
  43. +0
    -0
      src/theme/templets/widget_hot_sg.htm
  44. +0
    -0
      src/theme/templets/widget_qrcode.htm
  45. +0
    -0
      src/theme/templets/widget_recommend.htm
  46. +0
    -0
      src/theme/templets/widget_recommend_sg.htm
  47. +0
    -0
      src/theme/templets/widget_vote.htm

+ 1
- 1
src/install/config.cache.inc.php View File

@@ -23,7 +23,7 @@ $cfg_replacestr = '他妈的|TMD|傻逼|贱人';
$cfg_feedbackcheck = 'N';
$cfg_keyword_replace = 'Y';
$cfg_fck_xhtml = 'N';
$cfg_df_style = 'muban';
$cfg_df_style = 'templets';
$cfg_multi_site = 'N';
$cfg_dede_log = 'N';
$cfg_powerby = 'Copyright © 2022 DedeBIZ 版权所有';


+ 1
- 1
src/install/sql-dfdata.txt View File

@@ -3964,7 +3964,7 @@ INSERT INTO `#@__sysconfig` VALUES('1','cfg_basehost','站点网址(http://域
('21','cfg_feedbackcheck','是否需审核评论及留言','5','bool','Y'),
('22','cfg_keyword_replace','是否使用关键字替换功能,开启影响文档生成速度','2','bool','Y'),
('23','cfg_fck_xhtml','是否使用富文本XHTML','1','bool','N'),
('24','cfg_df_style','网站模板默认风格','1','string','muban'),
('24','cfg_df_style','网站模板默认风格','1','string','templets'),
('25','cfg_multi_site','是否支持多站点,开启此项后附件栏目连接arclist内容启用绝对网址','2','bool','N'),
('58','cfg_rm_remote','远程图片本地化','7','bool','Y'),
('27','cfg_dede_log','是否开启管理日志','2','bool','N'),


+ 1
- 1
src/system/common.inc.php View File

@@ -161,7 +161,7 @@ if ($cfg_multi_site == 'Y') {
//模板的存放目录
$cfg_templets_dir = $cfg_cmspath.'/theme';
$cfg_templeturl = $cfg_mainsite.$cfg_templets_dir;
$cfg_templets_skin = empty($cfg_df_style) ? $cfg_mainsite.$cfg_templets_dir."/muban" : $cfg_mainsite.$cfg_templets_dir."/$cfg_df_style";
$cfg_templets_skin = empty($cfg_df_style) ? $cfg_mainsite.$cfg_templets_dir."/templets" : $cfg_mainsite.$cfg_templets_dir."/$cfg_df_style";
//cms安装目录的网址
$cfg_cmsurl = $cfg_mainsite.$cfg_cmspath;
//插件目录,这个目录是用于存放计数器、投票、评论等程序的必要动态程序


src/theme/muban/advancedsearch.htm → src/theme/templets/advancedsearch.htm View File


src/theme/muban/article_article.htm → src/theme/templets/article_article.htm View File


src/theme/muban/article_default.htm → src/theme/templets/article_default.htm View File


src/theme/muban/article_default_sg.htm → src/theme/templets/article_default_sg.htm View File


src/theme/muban/article_image.htm → src/theme/templets/article_image.htm View File


src/theme/muban/article_infos.htm → src/theme/templets/article_infos.htm View File


src/theme/muban/article_shop.htm → src/theme/templets/article_shop.htm View File


src/theme/muban/article_soft.htm → src/theme/templets/article_soft.htm View File


src/theme/muban/article_spec.htm → src/theme/templets/article_spec.htm View File


src/theme/muban/footer.htm → src/theme/templets/footer.htm View File


src/theme/muban/googlemap.htm → src/theme/templets/googlemap.htm View File


src/theme/muban/header.htm → src/theme/templets/header.htm View File


src/theme/muban/index.htm → src/theme/templets/index.htm View File


src/theme/muban/index_article.htm → src/theme/templets/index_article.htm View File


src/theme/muban/index_default.htm → src/theme/templets/index_default.htm View File


src/theme/muban/index_default_sg.htm → src/theme/templets/index_default_sg.htm View File


src/theme/muban/index_image.htm → src/theme/templets/index_image.htm View File


src/theme/muban/index_infos.htm → src/theme/templets/index_infos.htm View File


src/theme/muban/index_shop.htm → src/theme/templets/index_shop.htm View File


src/theme/muban/index_soft.htm → src/theme/templets/index_soft.htm View File


src/theme/muban/list_article.htm → src/theme/templets/list_article.htm View File


src/theme/muban/list_default.htm → src/theme/templets/list_default.htm View File


src/theme/muban/list_default_sg.htm → src/theme/templets/list_default_sg.htm View File


src/theme/muban/list_free.htm → src/theme/templets/list_free.htm View File


src/theme/muban/list_image.htm → src/theme/templets/list_image.htm View File


src/theme/muban/list_infos.htm → src/theme/templets/list_infos.htm View File


src/theme/muban/list_shop.htm → src/theme/templets/list_shop.htm View File


src/theme/muban/list_soft.htm → src/theme/templets/list_soft.htm View File


src/theme/muban/list_spec.htm → src/theme/templets/list_spec.htm View File


src/theme/muban/navbar.htm → src/theme/templets/navbar.htm View File


src/theme/muban/search.htm → src/theme/templets/search.htm View File


src/theme/muban/singlepage.htm → src/theme/templets/singlepage.htm View File


src/theme/muban/tag.htm → src/theme/templets/tag.htm View File


src/theme/muban/taglist.htm → src/theme/templets/taglist.htm View File


src/theme/muban/top.htm → src/theme/templets/top.htm View File


src/theme/muban/widget_article_digg.htm → src/theme/templets/widget_article_digg.htm View File


src/theme/muban/widget_article_feedback.htm → src/theme/templets/widget_article_feedback.htm View File


src/theme/muban/widget_channels.htm → src/theme/templets/widget_channels.htm View File


src/theme/muban/widget_hot.htm → src/theme/templets/widget_hot.htm View File


src/theme/muban/widget_hot_sg.htm → src/theme/templets/widget_hot_sg.htm View File


src/theme/muban/widget_qrcode.htm → src/theme/templets/widget_qrcode.htm View File


src/theme/muban/widget_recommend.htm → src/theme/templets/widget_recommend.htm View File


src/theme/muban/widget_recommend_sg.htm → src/theme/templets/widget_recommend_sg.htm View File


src/theme/muban/widget_vote.htm → src/theme/templets/widget_vote.htm View File


Loading…
Cancel
Save