diff --git a/module/action/model.php b/module/action/model.php index 66ba694f52..c3e5577349 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -1540,7 +1540,11 @@ class actionModel extends model if($action->objectType == 'story') { $story = $this->loadModel('story')->getByID($action->objectID); - if(!empty($story)) $moduleName = $story->type; + if(!empty($story)) + { + $moduleName = $story->type; + $action->objectLink = helper::createLink('story', 'view', "id=$story->id&version=0¶m=0&storyType=$story->type"); + } } if($action->objectType == 'doclib')