|
...
|
...
|
@@ -28,12 +28,9 @@ class ProjectKeywordController extends BaseController |
|
|
|
if($info === false){
|
|
|
|
$this->response('success');
|
|
|
|
}
|
|
|
|
if(!empty($info['search_keywords'])){
|
|
|
|
$data['search_keywords'] = explode(',',$info['search_keywords']);
|
|
|
|
}
|
|
|
|
if(!empty($info['main_keywords'])){
|
|
|
|
$data['main_keywords'] = explode(',',$info['main_keywords']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$data['search_keywords'] = $info['search_keywords'];
|
|
|
|
$data['main_keywords'] = $info['main_keywords'];
|
|
|
|
$this->response('success',Code::SUCCESS,$data);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|