From 46ebbc3f0ea806e786b7a45fd9029e148ffa2b90 Mon Sep 17 00:00:00 2001 From: chengxl Date: Thu, 12 Feb 2026 09:37:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E7=89=88=E7=9B=B8=E5=85=B3=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common/LatexContent.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)){