Commit a4d9b3d5 authored by 李文起's avatar 李文起
Browse files

热点保存title为空判断

Showing with 2 additions and 1 deletion
+2 -1
......@@ -40,7 +40,8 @@ class HotspotAction
$this->returnData['ath'] = $this->data['ath'];
$this->returnData['atv'] = $this->data['atv'];
$this->returnData['icon_type'] = $this->data['iconType'];
$this->returnData['title'] = $this->data['title'];
$this->returnData['title'] = !empty($this->data['title']) ? $this->data['title'] : '';
//如果actionData有数据是要存储数据的
if (!empty($this->data['actionData'])) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment