415
{
416
// api调用文章内容,包括标签数据,返回数组
417
$apiObj = ApiOperator::__instance ()->get ( array (
418
'api' => 'Article.getarticle',
419
'articleID' => $id
420
) );
421
422
if(!$apiObj->data)
423
{
424
$this->redirect_message ( '该文章已经删除或未审核', $status = 'success', $time = 3, "" );
425
exit ();
|