diff --git a/module/common/view/action.html.php b/module/common/view/action.html.php
index b07da8587d..af01e2dd8a 100755
--- a/module/common/view/action.html.php
+++ b/module/common/view/action.html.php
@@ -50,7 +50,7 @@
- comment) != '' and $this->methodName == 'view' and $action->actor == $this->app->user->account and common::hasPriv('action', 'editComment'));?>
+ comment) != '' and strpos(',view,objectlibs,viewcard,', ",$this->methodName,") and $action->actor == $this->app->user->account and common::hasPriv('action', 'editComment'));?>
-
actor = zget($users, $action->actor);
diff --git a/module/doc/config.php b/module/doc/config.php
index 626efc5a30..45fac598de 100644
--- a/module/doc/config.php
+++ b/module/doc/config.php
@@ -21,9 +21,10 @@ $config->doc->custom->objectLibs = $config->doc->customObjectLibs;
$config->doc->custom->showLibs = 'zero,children';
$config->doc->editor = new stdclass();
-$config->doc->editor->create = array('id' => 'content', 'tools' => 'fullTools');
-$config->doc->editor->edit = array('id' => 'content', 'tools' => 'fullTools');
-$config->doc->editor->view = array('id' => 'comment,lastComment', 'tools' => 'simple');
+$config->doc->editor->create = array('id' => 'content', 'tools' => 'fullTools');
+$config->doc->editor->edit = array('id' => 'content', 'tools' => 'fullTools');
+$config->doc->editor->view = array('id' => 'comment,lastComment', 'tools' => 'simple');
+$config->doc->editor->objectlibs = array('id' => 'comment,lastComment', 'tools' => 'simple');
$config->doc->markdown = new stdclass();
$config->doc->markdown->create = array('id' => 'contentMarkdown', 'tools' => 'withchange');
diff --git a/module/doc/view/objectlibs.html.php b/module/doc/view/objectlibs.html.php
index cd6df9b47c..26478698e9 100644
--- a/module/doc/view/objectlibs.html.php
+++ b/module/doc/view/objectlibs.html.php
@@ -11,6 +11,7 @@
*/
?>
+
tab == 'execution'):;?>
diff --git a/module/kanban/config.php b/module/kanban/config.php
index fc6374a1ff..27373d5b3f 100644
--- a/module/kanban/config.php
+++ b/module/kanban/config.php
@@ -40,7 +40,7 @@ $config->kanban->editor->createcard = array('id' => 'desc', 'tools' => 'simpl
$config->kanban->editor->activate = array('id' => 'comment', 'tools' => 'simpleTools');
$config->kanban->editor->close = array('id' => 'comment', 'tools' => 'simpleTools');
$config->kanban->editor->editcard = array('id' => 'desc', 'tools' => 'simpleTools');
-$config->kanban->editor->viewcard = array('id' => 'comment', 'tools' => 'simpleTools');
+$config->kanban->editor->viewcard = array('id' => 'comment,lastComment', 'tools' => 'simpleTools');
$config->kanban->editor->activatecard = array('id' => 'comment', 'tools' => 'simpleTools');
$config->kanban->fromType = array('execution', 'productplan', 'release', 'build');