no message

This commit is contained in:
hellcat 2026-03-19 21:14:04 +08:00
parent e76a64b811
commit f1a5403f7f

View File

@ -42,7 +42,7 @@ public function receive(Request $oRequest)
$iOptIsTop = $aOpt["iIsTop"] ?? 0;
$sOptCategoryName = $aOpt["sCategoryName"] ?? "";
$sOptTag = $aOpt["tag"] ?? "";
$sOptTag = $aOpt["sTag"] ?? "";
$aOptTag = explode(",", $sOptTag);
$oCategory = Categories::where("sName", $sOptCategoryName)->first();
@ -77,6 +77,7 @@ public function receive(Request $oRequest)
$oArticle->sContent = $sSchema;
$oArticle->sTitle = $sTitle;
$oArticle->sTitleSub = mb_substr($sSchema, 0, 150, 'utf-8');
$oArticle->save();