| xqd
@@ -72,7 +72,7 @@ class UserAction extends RowAction
|
|
|
return ;
|
|
|
}
|
|
|
$photoDiv = "";
|
|
|
- if(!empty($userInfo->photo)){
|
|
|
+ if(isset($userInfo->photo)&&!empty($userInfo->photo)){
|
|
|
$photo = json_decode($userInfo->photo,true);
|
|
|
$photoDiv = "<div class='show_img_div'>";
|
|
|
if(count($photo)>0){
|
| xqd
@@ -83,7 +83,7 @@ class UserAction extends RowAction
|
|
|
$photoDiv .= "</div>";
|
|
|
}
|
|
|
$videoDiv = "";
|
|
|
- if(!empty($userInfo->video)){
|
|
|
+ if(isset($userInfo->video)&&!empty($userInfo->video)){
|
|
|
$video = json_decode($userInfo->video,true);
|
|
|
$videoDiv = "<div>";
|
|
|
if(count($video)>0){
|