2
0
forked from Wavyzz/dolibarr
Commit Graph

30419 Commits

Author SHA1 Message Date
Laurent Destailleur
1873371616 Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0 2023-02-09 18:08:23 +01:00
Marc de Lima Lucio
da0daa49da FIX: some more PHP8 comptability fixes 2023-02-09 18:01:59 +01:00
Laurent Destailleur
393f3a9480 Merge pull request #23811 from evarisk-theo/FIX-clicktodial-backtopage
FIX: fatal error on clicktodial backtopage
2023-02-09 15:40:28 +01:00
Laurent Destailleur
ec8aacaddb Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0 2023-02-09 15:30:05 +01:00
stickler-ci
78e1fad6bd Fixing style errors. 2023-02-09 14:27:50 +00:00
Quentin VIAL-GOUTEYRON
e83559afb0 FIX strato pdf 2023-02-09 15:20:07 +01:00
Laurent Destailleur
bbca94ba03 Merge pull request #23823 from grandoc/new_branch_07_02_2023
fix : Warning: Undefined property: ExpenseReport:: in /home/httpd/vho…
2023-02-09 15:16:19 +01:00
Laurent Destailleur
ac27f5ef74 Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0 2023-02-09 14:46:45 +01:00
Laurent Destailleur
bda65d0d9b Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 17.0 2023-02-08 22:52:19 +01:00
Laurent Destailleur
c871e84469 Fix fatal error on constant no defined 2023-02-08 22:50:27 +01:00
Laurent Destailleur
6cf792438d Fix permission 2023-02-08 13:48:17 +01:00
Laurent Destailleur
34b4cad448 Complete trans 2023-02-08 13:18:32 +01:00
Marc de Lima Lucio
1e53f87d51 FIX: various PHP8 compatibility fixes 2023-02-08 12:18:46 +01:00
Laurent Destailleur
47128f2ccc Debug v17 2023-02-08 04:40:13 +01:00
Laurent Destailleur
4cf2131410 Enable MS OAuth 2023-02-08 01:52:28 +01:00
Laurent Destailleur
310fd4e369 Debug IMAP-PHP for MS 2023-02-08 01:28:14 +01:00
Laurent Destailleur
e71ad2e23b Maxi debug of OAuth module 2023-02-07 20:12:53 +01:00
Philippe GRAND
9ad29faa32 fix : Warning: Undefined property: pdf_standard:: in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/core/modules/expensereport/doc/pdf_standard.modules.php on line 589 2023-02-07 16:01:09 +01:00
Philippe GRAND
4cd7f7beda fix : Warning: Undefined property: pdf_standard:: in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/core/modules/expensereport/doc/pdf_standard.modules.php on line 582 2023-02-07 15:56:28 +01:00
Laurent Destailleur
7c4858fdc3 Add page with help for ingoing email setup 2023-02-07 11:05:09 +01:00
Laurent Destailleur
95b306ba84 Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0 2023-02-07 00:19:54 +01:00
Laurent Destailleur
3dc8937ad3 Provide an object for computed extrafields 2023-02-07 00:11:33 +01:00
Théo David
394c3f847c FIX clicktodial backtopage 2023-02-06 17:03:51 +01:00
Théo David
7e15ea256f fix: socid post param on clicktodial add event button 2023-02-06 16:35:53 +01:00
Laurent Destailleur
2f8c4bd083 Fix label of var 2023-02-06 14:28:11 +01:00
Laurent Destailleur
a35e8faa2f Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 17.0 2023-02-06 14:13:50 +01:00
Laurent Destailleur
22d3d9cef5 Fix warning when using MAIN_SECURITY_CSRF_TOKEN_RENEWAL_ON_EACH_CALL 2023-02-06 14:13:37 +01:00
Philippe GRAND
0633ead0e6 fix : Warning: Undefined array key delivery in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/core/lib/sendings.lib.php on line 53 2023-02-05 18:05:03 +01:00
kkhelifa
2c826a4fcc FIX: Remove orphelan $this->db->rollback() in the function insertExtrafields() 2023-02-04 16:15:18 +01:00
kkhelifa
05a0c775b6 FIX: Remove orphelan $this->db->rollback() in the function insertExtrafields() 2023-02-04 16:13:23 +01:00
Sylvain Legrand
18708dfdee Fix input for progress not shown on lines in edit mode 2023-02-04 15:42:00 +01:00
Laurent Destailleur
d3a26efb0e Merge pull request #23755 from frederic34/patch-4
fix #23753
2023-02-04 15:39:01 +01:00
jyhere
ecadaf9666 [FIX] sellist / chkboxlist extrafields error when table is _extrafields
This patch fixes error when an sellist /chkboxlist extrafield directly use an *_extrafields table (as main table)
2023-02-04 15:27:08 +01:00
Laurent Destailleur
70c6ce9bfb Enhance error catching on dol_eval 2023-02-04 15:21:32 +01:00
Rept0id
3cc415af47 Updated function dol_eval, added error handling
- There were cases that dol_eval() would break the whole system.

-That was happening in case of using a new version plugin on an old version dolibarr. New plugin validates through isModActive() instead of $conf->moduleName->enabled. Even if you were deactivating the plugin, or totally delete it, the records were still on database for menu, so there were no obvious solution. This update adds a backwards compatibility, makes doli more stable and counterparts the use of eval, making it more safe.

- Use of eval is not bad, as well there are techniques in any project that are project-related useful and smart. For example, Linux kernel uses GOTO. But in such cases, there needs to be a safety net.

-I found out this after a lot of trouble, I hope this small fix will save other developers.

👍
2023-02-04 15:17:51 +01:00
Laurent Destailleur
57e003a7f5 Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 17.0 2023-02-04 15:17:01 +01:00
Laurent Destailleur
0a2d236c4e Merge pull request #23773 from DethCount/patch-3
FIX Division by zero
2023-02-04 15:06:03 +01:00
Laurent Destailleur
acef9f674f Merge pull request #23779 from grandoc/new_branch_04_02_2023
fix : Warning: Undefined property: stdClass:: in /home/httpd/vhosts/a…
2023-02-04 15:01:23 +01:00
Laurent Destailleur
2cc19f0e42 Fix css 2023-02-04 14:59:44 +01:00
Laurent Destailleur
c0dc9d47e3 Fix permissions #yogosha13771 2023-02-04 14:09:28 +01:00
Laurent Destailleur
f32fdf3f29 FIX #yogosha14972 2023-02-04 14:07:07 +01:00
Laurent Destailleur
e782930670 Fix #yogosha 2023-02-04 14:06:06 +01:00
Philippe GRAND
263ef91984 fix : Warning: Undefined array key xStartPos in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/core/class/commondocgenerator.class.php on line 1109 2023-02-04 11:10:30 +01:00
Laurent Destailleur
3069a97a46 Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0 2023-02-03 17:26:11 +01:00
Noé Courtier
9cf71e7d1c FIX: Cannot import find type_fees with cgenericdic.class because its have id and not rowid 2023-02-03 16:34:36 +01:00
Julien Nicolas
04e3b47547 Division by zero 2023-02-03 15:56:50 +01:00
VESSILLER
c2f91b2e15 FIX attach file and send by mail in ticket 2023-02-03 14:02:46 +01:00
Laurent Destailleur
45dd6c8f0b Prepare option PDF_SWISS_QRCODE_USE_OWNER_OF_ACCOUNT_AS_CREDITOR 2023-02-02 15:06:19 +01:00
Frédéric FRANCE
eb6c25f64d fix https://github.com/Dolibarr/dolibarr/issues/23753 2023-02-01 22:06:22 +01:00
Laurent Destailleur
a6f6192d78 Fix warnings 2023-02-01 11:20:52 +01:00