From f42b31fb4d3147592b9443fdbc83c61c5bb6370a Mon Sep 17 00:00:00 2001 From: Frank Cools Date: Thu, 2 Oct 2025 20:37:14 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20'=C3=A9v=C3=A9nements'=20title=20from?= =?UTF-8?q?=20Actions=20column?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed: - Changed button classes from 'butAction'/'butActionDelete' to generic 'button'/'button-delete' - Added spaces between buttons for better spacing - This should remove the weird 'événements' title that was appearing in the Actions column --- declarationtvaindex.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/declarationtvaindex.php b/declarationtvaindex.php index f971fb1..f98eedc 100644 --- a/declarationtvaindex.php +++ b/declarationtvaindex.php @@ -135,13 +135,13 @@ if (empty($declarations)) { print ''; if ($d['status'] == 'draft') { - print '' . $langs->trans("Validate") . ''; - print '' . $langs->trans("Delete") . ''; + print '' . $langs->trans("Validate") . ' '; + print '' . $langs->trans("Delete") . ' '; } elseif ($d['status'] == 'validated') { - print '' . $langs->trans("Submit") . ''; + print '' . $langs->trans("Submit") . ' '; } - print '' . $langs->trans("View") . ''; + print '' . $langs->trans("View") . ''; print ''; print ''; }