From 27d85cd1562a31b45ea5d88fac0d06b1901df5b7 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 22 Oct 2020 07:39:09 +0200 Subject: [PATCH] add link to document/folder details in list row when onepage mode is on --- CHANGELOG | 5 +++-- views/bootstrap/class.Bootstrap.php | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) 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 .= "";