|
@@ -439,7 +439,7 @@ class ProductLogic extends BaseLogic |
|
@@ -439,7 +439,7 @@ class ProductLogic extends BaseLogic |
|
439
|
'category_id' => $category_id,
|
439
|
'category_id' => $category_id,
|
|
440
|
'keyword_id' => $keyword_id,
|
440
|
'keyword_id' => $keyword_id,
|
|
441
|
'intro' => $data[5] ?? '',
|
441
|
'intro' => $data[5] ?? '',
|
|
442
|
- 'content' => $data[6] ?? '',
|
442
|
+ 'content' => $data[6] ? preg_replace('/[\x{10000}-\x{10FFFF}]/u','',$data[6]) : '',
|
|
443
|
'seo_mate' => Arr::a2s($seo_mate),
|
443
|
'seo_mate' => Arr::a2s($seo_mate),
|
|
444
|
'created_uid' => $user_id,
|
444
|
'created_uid' => $user_id,
|
|
445
|
'status' => Product::STATUS_ON
|
445
|
'status' => Product::STATUS_ON
|