From de2e7be238851e149e4999ff9ceb52d93dc5836d Mon Sep 17 00:00:00 2001 From: Kuno Sandholzer <165797297+sandholzerk@users.noreply.github.com> Date: Tue, 5 May 2026 08:31:56 +0200 Subject: [PATCH 1/2] Bump version-number from 3.6.15 to 3.6.16 (#1101) Currently the new version ist not recognised when upgrading. This results that no database-upgrade is initiated. The program worked perfectly without this, it's just for correctness. :) --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 8c177dddd..0a0940a93 100755 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ # file that keeps track of the latest tag in cvs and the corresponding version # this automates publishing a new version, when it's tagged # if you don't understand this, don't worry. You don't need this file -VERSION=3.6.15 +VERSION=3.6.16 From 139d6ba5afdaba37bc7236af66094cae641d366c Mon Sep 17 00:00:00 2001 From: Tatevik Date: Wed, 6 May 2026 17:14:38 +0400 Subject: [PATCH 2/2] Show description on list page --- public_html/lists/admin/list.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/public_html/lists/admin/list.php b/public_html/lists/admin/list.php index 1523a3b9d..e7bb798ed 100644 --- a/public_html/lists/admin/list.php +++ b/public_html/lists/admin/list.php @@ -239,13 +239,14 @@ function listMemberCounts($listId) while ($row = Sql_fetch_array($result)) { $membersDisplay = listMemberCounts($row['id']); - $desc = stripslashes($row['description']); + $desc = stripslashes($row['description'] ?? ''); //## allow plugins to add columns // @@@ TODO review this //foreach ($GLOBALS['plugins'] as $plugin) { //$desc = $plugin->displayLists($row) . $desc; //} + $displayDesc = strlen($desc) > 50 ? substr($desc, 0, 50) . '...' : $desc; $element = ''.''. stripslashes(cleanListName($row['name']).''); + if ($desc !== '') { + $element .= '
' . + htmlspecialchars($displayDesc, ENT_QUOTES, 'UTF-8') . + ''; + } + $ls->addElement($element); $ls->setClass($element, 'rows row1'); $ls->addColumn($element,