From c5dddc90085218703e4cc5a0e60155987c3083d1 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Thu, 29 Jan 2015 10:24:22 +0800 Subject: [PATCH] * fix bug #671. --- module/story/model.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/module/story/model.php b/module/story/model.php index 0522b1c53e..902d9944a5 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -546,6 +546,9 @@ class storyModel extends model ->join('reviewedBy', ',') ->get(); + /* fix bug #671. */ + $this->lang->story->closedReason = $this->lang->story->rejectedReason; + $this->dao->update(TABLE_STORY)->data($story) ->autoCheck() ->batchCheck($this->config->story->review->requiredFields, 'notempty')