Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PHP
vryPanoEdit
Commits
a4d9b3d5
Commit
a4d9b3d5
authored
4 years ago
by
李文起
Browse files
Options
Download
Email Patches
Plain Diff
热点保存title为空判断
parent
46ee55b5
master
hotfix/v1.2.14-dev
hotfix/v1.2.14-sj
hotfix/v1.2.14-sjtec
hotfix/v1.3.3.25
hotfix/v1.3.3.26
hotfix/v1.3.3.27
hotfix/v1.3.3.28
hotfix/v1.3.3.29
hotfix/v1.3.3.30
hotfix/v1.3.3.31
v2
vrsh_hotfix/v1.2.14.8
1.2.13.1
1.2.13
1.2.12
1.2.11.6
v1.3.3.31
v1.3.3.30
v1.3.3.29
v1.3.3.28
v1.3.3.27
v1.3.3.26
v1.3.3.25
v1.3.3.24
v1.3.3.23
v1.3.3.22
v1.3.3.21
v1.3.3.20
v1.3.3.19
v1.3.3.18
v1.3.3.17
v1.3.3.16
v1.3.3.15
v1.3.3.14
v1.3.3.13
v1.3.3.12
v1.3.3.11
v1.3.3.10
v1.3.3.9
v1.3.3.8
v1.3.3.7
v1.3.3.6
v1.3.3.5
v1.3.3.4
v1.3.3.3
v1.3.3.2
v1.3.3.1
v1.3.3
v1.3.2.2
v1.3.2.1
v1.3.2
v1.3.1.15
v1.3.1.14
v1.3.1.13
v1.3.1.12
v1.3.1.11
v1.3.1.10
v1.3.1.9
v1.3.1.8
v1.3.1.7
v1.3.1.6
v1.3.1.5
v1.3.1.4
v1.3.1.3
v1.3.1.2
v1.3.1.1
v1.3.1
v1.3.0.3
v1.3.0.2
v1.3.0.1
v1.3.0
v1.2.14.20
v1.2.14.19
v1.2.14.18
v1.2.14.17
v1.2.14.16
v1.2.14.15
v1.2.14.14
v1.2.14.13
v1.2.14.12
v1.2.14.11
v1.2.14.10
v1.2.14.9
v1.2.14.8
v1.2.14.7
v1.2.14.6
v1.2.14.5
v1.2.14.4
v1.2.14.3
v1.2.14.2
v1.2.14.1
v1.2.14
v1.2.13.6
v1.2.13.5
v1.2.13.4
v1.2.13.3
v1.2.13.2
v1.2.13
v1.2.11.7
v1.2.11.5
hnddy/v1.0.0.3
hnddy/v1.0.0.2
hnddy-v1.0.1
hnddy-v1.0.0.4
hnddy-v1.0.0.1
hnddy-v1.0.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Services/Hotspot/HotspotAction/HotspotAction.php
+2
-1
src/Services/Hotspot/HotspotAction/HotspotAction.php
with
2 additions
and
1 deletion
+2
-1
src/Services/Hotspot/HotspotAction/HotspotAction.php
View file @
a4d9b3d5
...
...
@@ -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'
]))
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help