diff --git a/CHANGELOG b/CHANGELOG index ff78183de..b76e13b6b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -182,11 +182,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 d61e3c8c0..7e39af3f2 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -2914,6 +2914,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 .= ""; @@ -3041,6 +3043,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 .= "";