* Finish task #110591.

This commit is contained in:
chaideqing
2024-01-16 16:39:46 +08:00
parent 0493665ec6
commit d5e49a3eda
5 changed files with 49 additions and 15 deletions
+5
View File
@@ -649,6 +649,11 @@ class actionModel extends model
$action->extra = sprintf($this->lang->execution->action->extra, '<strong>' . join(', ', $linkedProducts) . '</strong>');
}
}
elseif($objectType == 'story' && $actionName == 'retracted')
{
$story = $this->loadModel('story')->getById($objectID);
$action->extra = "#{$story->id} {$this->lang->story->title} {$story->title}";
}
$action->history = isset($histories[$actionID]) ? $histories[$actionID] : array();
$actionName = strtolower($action->action);