|
...
|
...
|
@@ -279,12 +279,12 @@ class BlogLogic extends BaseLogic |
|
|
|
}
|
|
|
|
|
|
|
|
$seo_keywords = '';
|
|
|
|
if($data[6]??''){
|
|
|
|
if($data[7]??''){
|
|
|
|
$seo_keywords = substr(strip_tags($data[7]),0,255);
|
|
|
|
}
|
|
|
|
|
|
|
|
$seo_description = '';
|
|
|
|
if($data[6]??''){
|
|
|
|
if($data[8]??''){
|
|
|
|
$seo_description = substr(strip_tags($data[8]),0,200);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|