|
...
|
...
|
@@ -72,8 +72,7 @@ class CustomModuleContentController extends BaseController |
|
|
|
public function categoryName($category_id,$data){
|
|
|
|
$category_name = '';
|
|
|
|
if(!empty($category_id) && !empty($data)){
|
|
|
|
$arr = explode(',',trim($category_id,','));
|
|
|
|
foreach ($arr as $v){
|
|
|
|
foreach ($category_id as $v){
|
|
|
|
if(isset($data[$v])){
|
|
|
|
$category_name .= $data[$v].',';
|
|
|
|
}
|
...
|
...
|
|