diff --git a/ChangeLog b/ChangeLog index f1f874d2777..7076bf1ac7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,10 @@ English Dolibarr ChangeLog -------------------------------------------------------------- +***** ChangeLog for 17.0.1 compared to 17.0.0 ***** + +TODO + ***** ChangeLog for 17.0.0 compared to 16.0.0 ***** @@ -209,6 +213,10 @@ Following changes may create regressions for some external modules, but were nec * Making a global search is sending the parameter using always the name search_all (instead of sometimes sall and search_all) * The property $url_last_version must be public if defined into module descriptor files; +***** ChangeLog for 16.0.5 compared to 16.0.4 ***** + +TODO + ***** ChangeLog for 16.0.4 compared to 16.0.3 ***** diff --git a/htdocs/filefunc.inc.php b/htdocs/filefunc.inc.php index 80f167057df..3a2e7d227eb 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', '17.0.0'); // a.b.c-alpha, a.b.c-beta, a.b.c-rcX or a.b.c + define('DOL_VERSION', '17.0.1'); // a.b.c-alpha, a.b.c-beta, a.b.c-rcX or a.b.c } if (!defined('EURO')) { diff --git a/htdocs/public/ticket/ajax/ajax.php b/htdocs/public/ticket/ajax/ajax.php index 67fe0c34bbc..b2c3c153f54 100644 --- a/htdocs/public/ticket/ajax/ajax.php +++ b/htdocs/public/ticket/ajax/ajax.php @@ -56,6 +56,7 @@ $action = GETPOST('action', 'aZ09'); $id = GETPOST('id', 'int'); $email = GETPOST('email', 'custom', 0, FILTER_VALIDATE_EMAIL); + if (!isModEnabled('ticket')) { httponly_accessforbidden('Module Ticket not enabled'); }