* New add multiinput for text type
* fix CI
* fix some code + add $value persistance
* fix some things to be more global
---------
Co-authored-by: Hystepik <lmarcouiller@nltechno.com>
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
* Add option to open files in new tab
* Add option to open files in new tab - with MAIN_DISABLE_FORCE_SAVEAS
* Add option to open files in new tab - fix
* Open in new tab with MAIN_DISABLE_FORCE_SAVEAS == 2
---------
Co-authored-by: Vaadasch <me@local.here>
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
* New functionality for signed shipment
* Add attribute for check if was already signed
* Update expedition.class.php
* Update onlineSign.php
* Update expedition.class.php
---------
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
* new function to display 2 sitweb export function in a popup
* Update website.lang
* update function overwriteTemplate for handle the path to export website
* update function for check the relative/absolute path
* add infoBull for explain to user where it will exported
---------
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
* NEW: method to help declare dictionaries more easily
* Example use of `declareNewDictionary()` method (redeclaring dictionaries of module Ticket with the new method)
* minor fixes: $this->db->prefix() in modTicket.class.php
* fix : Warning: Undefined variable in /home/httpd/vhosts/aflac.fr/domains/dol190.aflac.fr/httpdocs/compta/bank/various_payment/list.php on line 370
* backward
* update
* Fatal error: Uncaught TypeError: abs(): Argument #1 () must be of type int|float, string given in /home/httpd/vhosts/aflac.fr/domains/dol190.aflac.fr/httpdocs/core/tpl/commonfields_add.tpl.php on line 39
* Update commonfields_add.tpl.php
fix tab/space
* Update commonfields_add.tpl.php
fix space after cast
Data sent by webhooks is encoded in JSON and sent using the CURLOPT_POSTFIELDS function in cURL. However, the Content-Type header is not explicitly specified. By default, cURL automatically sets the Content-Type header to application/x-www-form-urlencoded, which can cause issues with certain applications.
To avoid this, I explicitly set the Content-Type header to application/json. This ensures that the data is sent in the correct format and that applications receiving the data can process it correctly.