Compare commits

...

10 Commits

Author SHA1 Message Date
Laurent Destailleur
3a4192a1f2 Fix CI. 2025-11-11 19:27:49 +01:00
Laurent Destailleur
2355a3b53b Merge branch 'fix_dev_mysql_workbench' of github.com:hregis/dolibarr into hregis-fix_dev_mysql_workbench 2025-11-11 17:59:54 +01:00
Regis Houssin
24f1aa1f63 FIX youhou 2025-10-26 04:50:21 +01:00
Regis Houssin
fb7b8f6c28 Revert "FIX modeste"
This reverts commit a268f6265f.
2025-10-26 04:49:59 +01:00
Regis Houssin
a268f6265f FIX modeste 2025-10-26 04:47:21 +01:00
Regis Houssin
52d714865c FIX Brian is in the kitchen 2025-10-26 03:10:40 +01:00
Regis Houssin
8900b8e7bd FIX Mister D 2025-10-26 03:03:38 +01:00
Regis Houssin
58942df61e FIX add apple 2025-10-26 02:52:01 +01:00
Regis Houssin
cdcbc60ec2 NEW add link to mac api rest client for test 2025-10-26 02:37:01 +01:00
Regis Houssin
b6ce064641 QUAL update mysql workbench 2025-10-26 02:53:36 +02:00
3 changed files with 35 additions and 2 deletions

View File

@@ -0,0 +1,33 @@
README (English)
--------------------------------
##############
RapidAPI
##############
RapidAPI for Mac is a full-featured HTTP client that let's you test and describe the APIs you build or consume.
It has a beautiful native macOS interface to compose requests, inspect server responses, generate client code and export API definitions.
https://paw.cloud/
@@@
(@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@%
@@@@@@, @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
(@@@@@@( @@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@@@@@@@@. /@@@@@@@@@@@@@@@@@(
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@@@@@@@@. @@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ /@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@# @@@@@@@@@@@ @@@@@@@@@@@@&
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@@@/
@@@@@@@@@@@@@@@@@@@@@@@@@@& .@@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@/
(@@@@@@@@@@@@@@@@@@@@@@@ .@@@@@@@@@@@ &@@@@@@@@@@@@@@@(
@@@@@ @@@@@ .@@@@@@@@@@@ @@@@@@@@@@@*

View File

@@ -3724,7 +3724,7 @@ if (!function_exists("llxFooter")) {
// Add code for the asynchronous anonymous first ping (for telemetry) // Add code for the asynchronous anonymous first ping (for telemetry)
// You can use &forceping=1 in parameters to force the ping if the ping was already sent. // You can use &forceping=1 in parameters to force the ping if the ping was already sent.
$forceping = GETPOST('forceping', 'alpha'); $forceping = GETPOSTINT('forceping');
if (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceping) { if (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceping) {
$hash_unique_id = dol_hash('dolibarr'.$conf->file->instance_unique_id, 'sha256'); // Note: if the global salt changes, this hash changes too so ping may be counted twice. We don't mind. It is for statistics purpose only. $hash_unique_id = dol_hash('dolibarr'.$conf->file->instance_unique_id, 'sha256'); // Note: if the global salt changes, this hash changes too so ping may be counted twice. We don't mind. It is for statistics purpose only.
@@ -3758,7 +3758,7 @@ if (!function_exists("llxFooter")) {
// Add code to force the registration if not yet done but ready (in case past submission failed) // Add code to force the registration if not yet done but ready (in case past submission failed)
// You can use &forceregistration=1 in parameters to force the call if the call was already sent. // You can use &forceregistration=1 in parameters to force the call if the call was already sent.
$forceregistration = GETPOST('forceregistration', 'alpha'); $forceregistration = GETPOSTINT('forceregistration');
if (isModEnabled('blockedlog') && (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceregistration)) { if (isModEnabled('blockedlog') && (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceregistration)) {
include_once DOL_DOCUMENT_ROOT.'/blockedlog/lib/blockedlog.lib.php'; include_once DOL_DOCUMENT_ROOT.'/blockedlog/lib/blockedlog.lib.php';
if (!isALNEQualifiedVersion()) { if (!isALNEQualifiedVersion()) {