...
|
...
|
@@ -164,8 +164,8 @@ class ProductController extends HomeBaseController{ |
|
|
public function commp(){
|
|
|
|
|
|
$id = $this -> request -> param();
|
|
|
$data = Db::name('portal_post') -> where('id',$id['id']) -> find();
|
|
|
$data['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($data['post_content']));
|
|
|
$data = Db::name('docu_coa') -> where('id',$id['id']) -> find();
|
|
|
$data['content'] = cmf_replace_content_file_url(htmlspecialchars_decode($data['content']));
|
|
|
$this -> assign('data',$data);
|
|
|
return $this -> fetch();
|
|
|
|
...
|
...
|
|