|
@@ -804,7 +804,12 @@ class Manage
|
|
$html = '';
|
|
$html = '';
|
|
if ($data) {
|
|
if ($data) {
|
|
foreach($data as $k => $v){
|
|
foreach($data as $k => $v){
|
|
- $res[] = $v['name'];
|
|
|
|
|
|
+ if (isset($v['name']) && $v['name']) {
|
|
|
|
+ $res[] = $v['name'];
|
|
|
|
+ } else {
|
|
|
|
+ $res[] = '';
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
if (count($res) > 3){
|
|
if (count($res) > 3){
|
|
$html = $res[0].'<br/>'.$res[1].'<br/>'.$res['2'].'……';
|
|
$html = $res[0].'<br/>'.$res[1].'<br/>'.$res['2'].'……';
|