diff --git a/CHANGELOG b/CHANGELOG
index 78059e8ed..e5999118c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,11 +2,12 @@
Changes in version 5.1.21
--------------------------------------------------------------------------------
- new api to fulltext search
-- do offer to export users of group if there are no users
+- do not offer to export users of group if there are no users
- config file can be set in env var SEEDDMS_CONFIG_FILE
-- fix error when search for a boolean attribute value
+- fix error when searching for a boolean attribute value
- extension may contain a conf varŅable to select a workflow
- do not set max_execution_time for scripts run by php-cli
+- add link to document/folder details in each list row if onepage mode is on
--------------------------------------------------------------------------------
Changes in version 5.1.20
diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php
index 5dca1131e..2b4bfd4e5 100644
--- a/views/bootstrap/class.Bootstrap.php
+++ b/views/bootstrap/class.Bootstrap.php
@@ -2685,6 +2685,8 @@ $('body').on('click', '[id^=\"table-row-folder\"] td:nth-child(2)', function(ev)
if($enableClipboard) {
$content .= '';
}
+ if($onepage)
+ $content .= '';
if(!empty($extracontent['end_action_list']))
$content .= $extracontent['end_action_list'];
$content .= "";
@@ -2812,6 +2814,8 @@ $('body').on('click', '[id^=\"table-row-folder\"] td:nth-child(2)', function(ev)
if($enableClipboard) {
$content .= '';
}
+ if($onepage)
+ $content .= '';
if(!empty($extracontent['end_action_list']))
$content .= $extracontent['end_action_list'];
$content .= "";