diff --git a/src/admin/ad_edit.php b/src/admin/ad_edit.php index 367e4b15..f990f89a 100644 --- a/src/admin/ad_edit.php +++ b/src/admin/ad_edit.php @@ -25,8 +25,8 @@ if ($dopost == 'delete') { $showhtml .= "预览:"; $row = $dsql->GetOne("SELECT tagname from `#@__myad` WHERE aid='$aid' "); $showtag = '{'."dede:myad name='{$row['tagname']}'/".'}'; - $info = "说明:如果嵌入的是织梦CMS广告标签,那么将会解析成标签中的内容到页面,广告修改后需要重新生成。
- 如果不希望重新生成所有页面,则直接调用JS代码即可。 + $info = "说明:如果嵌入的是织梦CMS广告标签,那么将会解析成标签中的内容到页面,广告修改后需要重新生成
+ 如果不希望重新生成所有页面,则直接调用JS代码即可 "; $wintitle = "广告管理-获取广告标签"; $wecome_info = "广告管理::获取JS"; diff --git a/src/admin/config.php b/src/admin/config.php index fe4c5198..a59a5e63 100644 --- a/src/admin/config.php +++ b/src/admin/config.php @@ -9,14 +9,14 @@ * @link https://www.dedebiz.com */ define('DEDEADMIN', str_replace("\\", '/', dirname(__FILE__))); -require_once(DEDEADMIN . '/../system/common.inc.php'); -require_once(DEDEINC . '/userlogin.class.php'); +require_once(DEDEADMIN.'/../system/common.inc.php'); +require_once(DEDEINC.'/userlogin.class.php'); header('Cache-Control:private'); $dsql->safeCheck = FALSE; $dsql->SetLongLink(); $cfg_admin_skin = 1;//后台管理风格 -if (file_exists(DEDEDATA . '/admin/skin.txt')) { - $skin = file_get_contents(DEDEDATA . '/admin/skin.txt'); +if (file_exists(DEDEDATA.'/admin/skin.txt')) { + $skin = file_get_contents(DEDEDATA.'/admin/skin.txt'); $cfg_admin_skin = !in_array($skin, array(1, 2, 3, 4)) ? 1 : $skin; } //检查CSRF @@ -51,9 +51,9 @@ $cuserLogin = new userLogin(); if ($cuserLogin->getUserID() == -1) { if (preg_match("#PHP (.*) Development Server#", $_SERVER['SERVER_SOFTWARE'])) { $dirname = dirname($_SERVER['SCRIPT_NAME']); - header("location:{$dirname}/login.php?gotopage=" . urlencode($dedeNowurl)); + header("location:{$dirname}/login.php?gotopage=".urlencode($dedeNowurl)); } else { - header("location:login.php?gotopage=" . urlencode($dedeNowurl)); + header("location:login.php?gotopage=".urlencode($dedeNowurl)); } exit(); } @@ -76,9 +76,9 @@ if ($cfg_dede_log == 'Y') { $s_scriptNames = explode('/', $s_scriptName); $s_scriptNames = $s_scriptNames[count($s_scriptNames) - 1]; $s_userip = GetIP(); - if ($s_method == 'POST' || (!preg_match("#" . $s_nologfile . "#i", $s_scriptNames) && $s_query != '') || preg_match("#" . $s_needlogfile . "#i", $s_scriptNames)) { + if ($s_method == 'POST' || (!preg_match("#".$s_nologfile."#i", $s_scriptNames) && $s_query != '') || preg_match("#".$s_needlogfile."#i", $s_scriptNames)) { $inquery = "INSERT INTO `#@__log`(adminid,filename,method,query,cip,dtime) - VALUES ('" . $cuserLogin->getUserID() . "','{$s_scriptNames}','{$s_method}','" . addslashes($s_query) . "','{$s_userip}','" . time() . "');"; + VALUES ('".$cuserLogin->getUserID()."','{$s_scriptNames}','{$s_method}','".addslashes($s_query)."','{$s_userip}','".time()."');"; $dsql->ExecuteNoneQuery($inquery); } } @@ -86,12 +86,12 @@ if (file_exists(DEDEDATA."/downmix.data.php")) { rename(DEDEDATA."/downmix.data.php",DEDEDATA."/downmix.data.inc"); } //管理缓存管理员频道缓存 -$cache1 = DEDEDATA . '/cache/inc_catalog_base.inc'; +$cache1 = DEDEDATA.'/cache/inc_catalog_base.inc'; if (!file_exists($cache1)) UpDateCatCache(); -$cacheFile = DEDEDATA . '/cache/admincat_' . $cuserLogin->userID . '.inc'; +$cacheFile = DEDEDATA.'/cache/admincat_'.$cuserLogin->userID.'.inc'; if (file_exists($cacheFile)) require_once($cacheFile); //更新服务器 -require_once(DEDEDATA . '/admin/config_update.php'); +require_once(DEDEDATA.'/admin/config_update.php'); if (strlen($cfg_cookie_encode) <= 10) { $chars = 'abcdefghigklmnopqrstuvwxwyABCDEFGHIGKLMNOPQRSTUVWXWY0123456789'; $hash = ''; @@ -101,25 +101,25 @@ if (strlen($cfg_cookie_encode) <= 10) { $hash .= $chars[mt_rand(0, $max)]; } $dsql->ExecuteNoneQuery("UPDATE `#@__sysconfig` SET `value`='{$hash}' WHERE varname='cfg_cookie_encode' "); - $configfile = DEDEDATA . '/config.cache.inc.php'; + $configfile = DEDEDATA.'/config.cache.inc.php'; if (!is_writeable($configfile)) { echo "配置文件'{$configfile}'不支持写入,无法修改系统配置参数"; exit(); } $fp = fopen($configfile, 'w'); flock($fp, 3); - fwrite($fp, "<" . "?php\r\n"); + fwrite($fp, "<"."?php\r\n"); $dsql->SetQuery("SELECT `varname`,`type`,`value`,`groupid` FROM `#@__sysconfig` ORDER BY aid ASC "); $dsql->Execute(); while ($row = $dsql->GetArray()) { if ($row['type'] == 'number') { if ($row['value'] == '') $row['value'] = 0; - fwrite($fp, "\${$row['varname']} = " . $row['value'] . ";\r\n"); + fwrite($fp, "\${$row['varname']} = ".$row['value'].";\r\n"); } else { - fwrite($fp, "\${$row['varname']} = '" . str_replace("'", '', $row['value']) . "';\r\n"); + fwrite($fp, "\${$row['varname']} = '".str_replace("'", '', $row['value'])."';\r\n"); } } - fwrite($fp, "?" . ">"); + fwrite($fp, "?".">"); fclose($fp); } /** @@ -131,8 +131,8 @@ if (strlen($cfg_cookie_encode) <= 10) { function UpDateCatCache() { global $dsql, $cache1, $cuserLogin; - $cache2 = DEDEDATA . '/cache/channelsonlist.inc'; - $cache3 = DEDEDATA . '/cache/channeltoplist.inc'; + $cache2 = DEDEDATA.'/cache/channelsonlist.inc'; + $cache3 = DEDEDATA.'/cache/channeltoplist.inc'; $dsql->SetQuery("SELECT id,reid,channeltype,issend,typename FROM `#@__arctype`"); $dsql->Execute(); $fp1 = fopen($cache1, 'w'); @@ -153,8 +153,8 @@ function UpDateCatCache() //清空选项缓存 function ClearOptCache() { - $tplCache = DEDEDATA . '/tplcache/'; - $fileArray = glob($tplCache . "inc_option_*.inc"); + $tplCache = DEDEDATA.'/tplcache/'; + $fileArray = glob($tplCache."inc_option_*.inc"); if (count($fileArray) > 1) { foreach ($fileArray as $key => $value) { if (file_exists($value)) unlink($value); @@ -174,7 +174,7 @@ function ClearOptCache() */ function DedeInclude($filename, $isabs = FALSE) { - return $isabs ? $filename : DEDEADMIN . '/' . $filename; + return $isabs ? $filename : DEDEADMIN.'/'.$filename; } /** * 根据用户mid获取用户名称 diff --git a/src/admin/dialog/select_templets_post.php b/src/admin/dialog/select_templets_post.php index daf15f8a..f7ec977b 100644 --- a/src/admin/dialog/select_templets_post.php +++ b/src/admin/dialog/select_templets_post.php @@ -29,7 +29,7 @@ if ($filename =='') { $filename = $uploadfile_name; } $filename = trim(preg_replace("#[ \r\n\t\*\%\\\/\?><\|\":]{1,}#", '', $filename)); -if ($filename == '' || !preg_match("#\.(" . $cfg_txttype . ")#i", $filename)) { +if ($filename == '' || !preg_match("#\.(".$cfg_txttype.")#i", $filename)) { ShowMsg("您所上传的文件存在问题,请检查文件类型是否适合", "-1"); } $fullfilename = $cfg_basedir.$activepath."/".$filename; diff --git a/src/admin/sys_repair.php b/src/admin/sys_repair.php index 60bc8478..37dbb5f2 100644 --- a/src/admin/sys_repair.php +++ b/src/admin/sys_repair.php @@ -24,12 +24,12 @@ if (empty($dopost)) {
- 由于手动升级时用户没运行指定的SQL语句,或自动升级的遗漏处理或处理出错,可能会导致一些错误,使用本工具会自动检测并处理。

+ 由于手动升级时用户没运行指定的SQL语句,或自动升级的遗漏处理或处理出错,可能会导致一些错误,使用本工具会自动检测并处理

本工具目前主要执行下面动作:
1、修复/优化数据表;
2、更新系统缓存;
- 3、检测系统变量一致性。
- 4、检测微表与主表数据一致性。
+ 3、检测系统变量一致性
+ 4、检测微表与主表数据一致性


点击此开始进行常规检测>> diff --git a/src/admin/templets/stepselect_showajax.htm b/src/admin/templets/stepselect_showajax.htm index 83f93503..acccc1fe 100644 --- a/src/admin/templets/stepselect_showajax.htm +++ b/src/admin/templets/stepselect_showajax.htm @@ -56,7 +56,7 @@ if($arr['issign']==0)
 枚举名:
 排序值:
-
如果不指定,默认以枚举添加先后来排序。
+
如果不指定,默认以枚举添加先后来排序


-这里仅显示数据关系,实际应用中,二级联动生成的表单是支持级连的,并非全部列出。 +这里仅显示数据关系,实际应用中,二级联动生成的表单是支持级连的,并非全部列出
linkID, "Select LAST_INSERT_ID() as lid"); //$row = mysqli_fetch_array($rs); //return $row["lid"]; diff --git a/src/system/database/dedesqlite.class.php b/src/system/database/dedesqlite.class.php index 55c56aa6..2e3a877e 100755 --- a/src/system/database/dedesqlite.class.php +++ b/src/system/database/dedesqlite.class.php @@ -407,8 +407,8 @@ class DedeSqlite //获取上一步INSERT操作产生的ID function GetLastID() { - //如果 AUTO_INCREMENT 的列的类型是 BIGINT,则 mysqli_insert_id() 返回的值将不正确。 - //可以在 SQL 查询中用 MySQL 内部的 SQL 函数 LAST_INSERT_ID() 来替代。 + //如果 AUTO_INCREMENT 的列的类型是 BIGINT,则 mysqli_insert_id() 返回的值将不正确 + //可以在 SQL 查询中用 MySQL 内部的 SQL 函数 LAST_INSERT_ID() 来替代 //$rs = mysqli_query($this->linkID, "Select LAST_INSERT_ID() as lid"); //$row = mysqli_fetch_array($rs); //return $row["lid"]; diff --git a/src/theme/templets/article_default.htm b/src/theme/templets/article_default.htm index bc7a4bb4..e0a6b2ce 100644 --- a/src/theme/templets/article_default.htm +++ b/src/theme/templets/article_default.htm @@ -48,8 +48,8 @@
diff --git a/src/theme/templets/article_default_sg.htm b/src/theme/templets/article_default_sg.htm index bc7a4bb4..e0a6b2ce 100644 --- a/src/theme/templets/article_default_sg.htm +++ b/src/theme/templets/article_default_sg.htm @@ -48,8 +48,8 @@