* fix bug: if status == 'closed' then continue;

* adjust batchClose.
This commit is contained in:
azhi
2013-08-30 10:57:10 +08:00
parent 1fc857c907
commit 72e00feda4
+1 -1
View File
@@ -582,7 +582,7 @@ class storyModel extends model
foreach($storyIDList as $storyID)
{
$oldStory = $this->getById($storyID);
if(!$oldStory->status == 'closed') continue;
if($oldStory->status == 'closed') continue;
$story->lastEditedBy = $this->app->user->account;
$story->lastEditedDate = $now;