diff --git a/application/common/LatexContent.php b/application/common/LatexContent.php index 2010b11..0cd0385 100644 --- a/application/common/LatexContent.php +++ b/application/common/LatexContent.php @@ -73,7 +73,7 @@ page={{stage_page}},%号 \accepted{{{accepted_date}}} \Availableonline{{{pub_date}}} \EditorialAdvisoryBoard{{{editorial_advisory_board}}} -{{executive_editor}} +\Executiveeditor{{{executive_editor}}} {{abstract}} {{keywords}} @@ -187,8 +187,8 @@ page={{stage_page}},%号 //终审编委名字 $aSearch['{{editorial_advisory_board}}'] = empty($aTime['editorial_advisory_board']) ? '' : $aTime['editorial_advisory_board']; //获取编辑信息 - $executive_editor = empty($aProductionArticle['executive_editor']) ? '' : '\Executiveeditor{'.$this->dealContent($aProductionArticle['executive_editor']).'}'; - $executive_editor_realname = empty($aUser['realname']) ? '' : '\Executiveeditor{'.$this->dealContent($aUser['realname']).'}'; + $executive_editor = empty($aProductionArticle['executive_editor']) ? '' : $this->dealContent($aProductionArticle['executive_editor']); + $executive_editor_realname = empty($aUser['realname']) ? '' : $this->dealContent($aUser['realname']); $executive_editor = empty($executive_editor) ? $executive_editor_realname : $executive_editor; $aSearch['{{executive_editor}}'] = $executive_editor; @@ -530,7 +530,7 @@ page={{stage_page}},%号 return $sCite; } - private function getArticleTime($aParam = []){ + public function getArticleTime($aParam = []){ //必填值验证 $iArticleId = empty($aParam['article_id']) ? '' : $aParam['article_id']; if(empty($iArticleId)){