diff --git a/module/action/model.php b/module/action/model.php index c134d317e9..899f4f580b 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -739,6 +739,7 @@ class actionModel extends model elseif($action->action == 'createmr' and strpos($action->extra, '::') !== false) { list($mrCreatedDate, $mrActor, $mrLink) = explode('::', $action->extra); + if(isonlybody()) $mrLink .= '?onlybody=yes'; $this->app->loadLang('mr'); $desc = sprintf($this->lang->mr->createAction, $mrCreatedDate, $mrActor, $mrLink); } diff --git a/module/mr/model.php b/module/mr/model.php index a160889091..07d84f3532 100644 --- a/module/mr/model.php +++ b/module/mr/model.php @@ -1415,7 +1415,7 @@ class mrModel extends model /* Get link action text. */ $MR = $this->getByID($MRID); $users = $this->loadModel('user')->getPairs('noletter'); - $MRCreateAction = $MR->createdDate . '::' . zget($users, $MR->createdBy) . '::' . helper::createLink('mr', 'view', "mr={$MR->id}", '', true); + $MRCreateAction = $MR->createdDate . '::' . zget($users, $MR->createdBy) . '::' . helper::createLink('mr', 'view', "mr={$MR->id}"); foreach($links as $linkID) {