From 8ab43947d69ee3ab81c3504da093419a96e8663a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=99=E8=BF=B0=E3=80=81=E5=88=AB=E7=A6=BB?= <93301500+xushubieli@users.noreply.github.com> Date: Thu, 27 Mar 2025 17:54:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=96=87=E6=A1=A3=E8=87=AA?= =?UTF-8?q?=E5=8A=A8alt=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/diy.php | 2 ++ src/system/extend.func.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/apps/diy.php b/src/apps/diy.php index 63ecf5b6..4c806a79 100755 --- a/src/apps/diy.php +++ b/src/apps/diy.php @@ -98,6 +98,8 @@ if ($action == 'post') { require_once(DEDEINC.'/libraries/mail.class.php'); $smtp = new smtp($cfg_smtp_server, $cfg_smtp_port, true, $cfg_smtp_usermail, $cfg_smtp_password); $smtp->debug = false; + //除了cfg_adminemail接收邮件外,自定义发送其他指定邮件,恢复注释代码使用 + //$cfg_smtp_usermail2 = "admin@qq.com"; $smtp->sendmail($cfg_adminemail, $cfg_webname, $cfg_smtp_usermail, $mailtitle, $mailbody, $mailtype); } else { @mail($cfg_adminemail, $mailtitle, $mailbody, $headers); diff --git a/src/system/extend.func.php b/src/system/extend.func.php index 57053ca0..dcbb8e0e 100755 --- a/src/system/extend.func.php +++ b/src/system/extend.func.php @@ -58,6 +58,7 @@ function obtainalt($newalt) { global $dsql, $id, $aid; $myid = isset($id) ? $id : $aid; + $title = isset($row['title']) ? $row['title'] : ''; $row = $dsql->GetOne("SELECT title FROM `#@__archives` WHERE id='$myid'"); //图片注释自动为标题 $newalt = str_ireplace(array('alt=""', 'alt=\'\'', 'title=""', 'title=\'\''), "", $newalt); @@ -65,6 +66,7 @@ function obtainalt($newalt) //去掉图片宽度和高度 $newalt = preg_replace("/style=\"width\:(.*)\"/", "", $newalt); //去掉结尾 + $newalt = str_ireplace(" ", " ", $newalt); $newalt = str_ireplace(" /", "", $newalt); return $newalt; }