* fix bug: if status == 'closed' then continue;
* adjust batchClose.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user