From 7cd10ef371326faeb42c54794c5c1c97c23f158d Mon Sep 17 00:00:00 2001 From: wangyidong Date: Mon, 14 Nov 2016 16:03:16 +0800 Subject: [PATCH] * code for 2803. --- module/doc/model.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/module/doc/model.php b/module/doc/model.php index 6f1c88e754..1eb8edcfd6 100644 --- a/module/doc/model.php +++ b/module/doc/model.php @@ -42,7 +42,17 @@ class docModel extends model } } - $selectHtml = "{$libs[$libID]}
{$this->lang->doc->libTypeList['product']}
{$this->lang->doc->libTypeList['project']}
已结束
{$this->lang->doc->libTypeList['custom']}
"; + $this->app->loadLang('project'); + $selectHtml = "{$libs[$libID]} "; + $selectHtml .= "
"; + $selectHtml .= ""; + $selectHtml .= "
"; + $selectHtml .= "
"; + $selectHtml .= "
"; + $selectHtml .= "
{$this->lang->doc->libTypeList['product']}
"; + $selectHtml .= "
{$this->lang->doc->libTypeList['project']}
{$this->lang->project->statusList['done']}
"; + $selectHtml .= "
{$this->lang->doc->libTypeList['custom']}
"; + $selectHtml .= "
"; common::setMenuVars($this->lang->doc->menu, 'list', $selectHtml); common::setMenuVars($this->lang->doc->menu, 'crumb', $this->getCrumbs($libID, $moduleID)); }