From bb7b69ef43673ed403436eac05e0bc31d5033ff7 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Fri, 17 Mar 2023 06:43:15 +0100 Subject: [PATCH 1/2] FIX FILTER_VALIDATE_EMAIL param is not a string --- htdocs/public/ticket/ajax/ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/public/ticket/ajax/ajax.php b/htdocs/public/ticket/ajax/ajax.php index 79c4b5bf530..9092bf37b77 100644 --- a/htdocs/public/ticket/ajax/ajax.php +++ b/htdocs/public/ticket/ajax/ajax.php @@ -55,7 +55,7 @@ include_once '../../../main.inc.php'; // Load $user and permissions $action = GETPOST('action', 'aZ09'); $id = GETPOST('id', 'int'); -$email = GETPOST('email', 'custom', 0, 'FILTER_VALIDATE_EMAIL'); +$email = GETPOST('email', 'custom', 0, FILTER_VALIDATE_EMAIL); if (!isModEnabled('ticket')) { From c90016b8e5725105ecab7d826f2b9423d5e43bd0 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 18 Mar 2023 01:36:51 +0100 Subject: [PATCH 2/2] Prepare 16.0.5 --- ChangeLog | 5 +++++ htdocs/filefunc.inc.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3d7e5ebd18e..f9e22813487 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,11 @@ English Dolibarr ChangeLog -------------------------------------------------------------- +***** ChangeLog for 16.0.5 compared to 16.0.4 ***** + +TODO + + ***** ChangeLog for 16.0.4 compared to 16.0.3 ***** FIX: Amount of localtax1 and 2 not correctly save on purchase order (the rate was saved instead) diff --git a/htdocs/filefunc.inc.php b/htdocs/filefunc.inc.php index f57a3730a6f..b52ac0b0267 100644 --- a/htdocs/filefunc.inc.php +++ b/htdocs/filefunc.inc.php @@ -34,7 +34,7 @@ if (!defined('DOL_APPLICATION_TITLE')) { define('DOL_APPLICATION_TITLE', 'Dolibarr'); } if (!defined('DOL_VERSION')) { - define('DOL_VERSION', '16.0.4'); // a.b.c-alpha, a.b.c-beta, a.b.c-rcX or a.b.c + define('DOL_VERSION', '16.0.5'); // a.b.c-alpha, a.b.c-beta, a.b.c-rcX or a.b.c } if (!defined('EURO')) {