2
0
forked from Wavyzz/dolibarr
Commit Graph

133054 Commits

Author SHA1 Message Date
Laurent Destailleur
a403b951e5 Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop 2024-03-21 13:55:42 +01:00
Laurent Destailleur
477fb7a035 Fix warning 2024-03-21 13:55:23 +01:00
Laurent Destailleur
16c9393ba6 Merge pull request #29003 from bradley-jarvis/fix-email-sendscript
FIX broken send mail script
2024-03-21 13:49:01 +01:00
Laurent Destailleur
9d31390e74 Update mailing-send.php 2024-03-21 13:48:50 +01:00
Laurent Destailleur
43a7db166e Update mailing-send.php 2024-03-21 13:44:57 +01:00
Laurent Destailleur
1ad4acc87e Merge branch 'develop' into fix-email-sendscript 2024-03-21 13:37:10 +01:00
Laurent Destailleur
b5804aecfd Fix bad cast for name newtoken 2024-03-21 13:34:16 +01:00
Laurent Destailleur
380c1092eb Fix warnings 2024-03-21 13:19:31 +01:00
Laurent Destailleur
f3e6b38d9d Fix warning 2024-03-21 13:16:59 +01:00
Laurent Destailleur
aee4ccc32c Fix warnings 2024-03-21 13:06:20 +01:00
Laurent Destailleur
58e719eb56 Fix sanitization 2024-03-21 13:03:30 +01:00
Laurent Destailleur
9d5aa4a448 Fix sanitization 2024-03-21 13:02:41 +01:00
Laurent Destailleur
ae8e49e611 Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop 2024-03-21 13:00:29 +01:00
Laurent Destailleur
84f2121610 Add a FIXME 2024-03-21 12:58:39 +01:00
Laurent Destailleur
56f2af9915 Merge pull request #28995 from mdeweerd/fix/PhanTypePossiblyInvalidDimOffset
Qual: Fix several typing issues with regards to array definitions
2024-03-21 12:55:01 +01:00
Laurent Destailleur
60c626dbe4 Merge branch 'develop' into fix/PhanTypePossiblyInvalidDimOffset 2024-03-21 12:53:59 +01:00
Laurent Destailleur
d7a8b9c6fe Merge pull request #28990 from mdeweerd/qual/bumplog2cs
Qual: Bump logToCheckStyle for better filename handling
2024-03-21 12:53:32 +01:00
Laurent Destailleur
b2adfa8be2 Merge pull request #28994 from mdeweerd/fix/PhanTypeMismatchReturnNullable
Fix Several nullable return values contrary to PHPdoc
2024-03-21 12:52:54 +01:00
Laurent Destailleur
61eefe5fa9 Merge branch 'develop' into fix/PhanTypeMismatchReturnNullable 2024-03-21 12:51:27 +01:00
Laurent Destailleur
ba9a846672 Fix trans missing 2024-03-21 12:50:30 +01:00
Laurent Destailleur
aa77573cd9 Sanitize DDL instructions 2024-03-21 12:45:58 +01:00
Laurent Destailleur
171c32be34 Add DDLDropTable and DDLCreateTable into phpunit tests 2024-03-21 12:21:38 +01:00
Bradley Jarvis
dd6dec337b Merge branch 'Dolibarr:develop' into fix-email-sendscript 2024-03-21 22:14:19 +11:00
Laurent Destailleur
ce2959b022 Clean method DDLCreateTable (used by modulebuilder only) #28996 2024-03-21 12:10:09 +01:00
brad
4fc50c3761 Fix newline after parenthesis 2024-03-21 22:05:50 +11:00
brad
ebdcb0fa0e Fix spaces/tabs 2024-03-21 21:56:09 +11:00
Laurent Destailleur
ae10eedf2a Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into develop 2024-03-21 11:29:16 +01:00
Laurent Destailleur
ce711c80fb Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 19.0 2024-03-21 11:23:05 +01:00
Laurent Destailleur
57eb393dad Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 19.0 2024-03-21 11:22:28 +01:00
Laurent Destailleur
01a058b208 Fix regression 2024-03-21 11:22:12 +01:00
Laurent Destailleur
27c0192b7c cast smallint 2024-03-21 11:17:15 +01:00
Laurent Destailleur
ad36de82a2 Merge pull request #28997 from am97/fix/18.0/DDLUpdateField
FIX: SQL syntax error in DDLUpdateField
2024-03-21 11:10:07 +01:00
brad
66d74b01f7 Fix send mail script
- correctly send only set number of emails per call
- will jump through each validated mailout
2024-03-21 20:46:08 +11:00
Andrés Maldonado
976686262d FIX: SQL syntax error in DDLUpdateField 2024-03-21 02:36:40 +01:00
MDW
2496d20d4f Fix nullable return with if($ok == 1) in stead of if($ok)
# Fix nullable return with if($ok == 1) in stead of if($ok)

This seems to be a bug in Phan where if($ok) changes the type of $ok.
Testing with '$ok == 1' instead fixes the issue.

This has been reported to the phan team.
2024-03-21 00:28:14 +01:00
MDW
53c628f219 Cast DolEditor::Create to string to avoid mistyping as void 2024-03-20 23:54:33 +01:00
MDW
942239b5d6 Update PHPdoc to show nullable return 2024-03-20 23:54:32 +01:00
MDW
5ee5a4ac2c Suppress PhanDeprecatedFunction message for stripe 2024-03-20 23:54:32 +01:00
MDW
44ef0de1ef Fix null return by initialising return value, forcing type 2024-03-20 23:54:31 +01:00
MDW
aeefca7e7e Fix $arrayfields typing lost by dol_sort_array() by forcing the type 2024-03-20 23:29:48 +01:00
MDW
d818e86c09 Fix PhanTypePossiblyInvalidDimOffset by correcting invalid indexes 2024-03-20 22:32:09 +01:00
MDW
351c153102 Fix null return by initialising return value and generate error on 0 2024-03-20 21:58:48 +01:00
MDW
9ecb4bd639 Fix null return by returning empty string in else case 2024-03-20 21:58:47 +01:00
MDW
4f9ad83222 Fix null return by returning empty string 2024-03-20 21:58:46 +01:00
MDW
23b7d63850 Fix null return by initialising return value to 0 2024-03-20 21:58:45 +01:00
MDW
f824bbdc23 Fix null return by returning and logging error 2024-03-20 21:58:45 +01:00
MDW
d591d258f1 Fix null return by returning 0 2024-03-20 21:58:44 +01:00
MDW
6bfdc4655f Disable ignores phan's baseline.txt (fixed) 2024-03-20 21:58:43 +01:00
MDW
6dc3fc94f7 Fix PhanTypeMismatchReturnNullable by setting return variable in 'else' case 2024-03-20 21:58:42 +01:00
MDW
ba4a482c96 Fix PhanTypeMismatchReturnNullable by forcing type for phan 2024-03-20 21:58:41 +01:00