Frédéric FRANCE
ee95ac237c
Update functions.lib.php
2023-02-22 18:21:58 +01:00
Frédéric FRANCE
d9fda122ff
utf8_decode is deprecated
2023-02-22 18:14:44 +01:00
Laurent Destailleur
44da230012
Clean code
2023-02-21 12:57:36 +01:00
Laurent Destailleur
341a9ad283
NEW Better responsive for mass actions
2023-02-20 20:17:19 +01:00
Laurent Destailleur
870ac42082
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-20 16:20:49 +01:00
Laurent Destailleur
196184ca3f
Debug v17
2023-02-20 01:12:15 +01:00
Laurent Destailleur
d89ccaeaad
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-19 18:18:38 +01:00
Laurent Destailleur
93927cceff
Debug v17
2023-02-19 16:12:28 +01:00
Laurent Destailleur
30c0b5e60e
Debug Look and feel v17
2023-02-19 12:42:04 +01:00
Laurent Destailleur
17b2267397
Debug Look and feel v17
2023-02-19 12:39:00 +01:00
Laurent Destailleur
fdcce8d263
Add nonce on javascript tags
2023-02-18 15:10:05 +01:00
Laurent Destailleur
0b4cacd291
Use dolChmod
2023-02-17 20:01:53 +01:00
Laurent Destailleur
27552f6706
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-16 02:27:44 +01:00
Laurent Destailleur
ec706fa13e
CSS
2023-02-16 00:42:19 +01:00
Laurent Destailleur
f5adef1ffb
Start to intrroduce type "restricthtmlnolink"
2023-02-13 19:48:04 +01:00
Laurent Destailleur
19bfb021e1
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-13 13:51:35 +01:00
Laurent Destailleur
183ae35ab7
Fix #huntr10e423cd-7051-43fd-b736-4e18650d0172
2023-02-13 12:57:35 +01:00
Laurent Destailleur
0d557d1afc
Debug v17
2023-02-11 12:28:23 +01:00
Laurent Destailleur
d37c5ed6b1
Debug v17
2023-02-10 14:18:37 +01:00
Laurent Destailleur
5ef4aa78e9
Fix filter using !=
2023-02-09 23:16:34 +01:00
Laurent Destailleur
2a83487c46
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-09 19:37:33 +01:00
Laurent Destailleur
e9ce09f9d1
Doc
2023-02-09 18:50:22 +01:00
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
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
e71ad2e23b
Maxi debug of OAuth module
2023-02-07 20:12:53 +01:00
Laurent Destailleur
cd2e82f4a5
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-07 00:22:27 +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
Laurent Destailleur
fe35f5ec28
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-02-06 14:21:25 +01:00
Laurent Destailleur
437539ecb9
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into
...
develop
2023-02-05 22:50:12 +01:00
Laurent Destailleur
631168f56c
NEW Collapse/Expand separators supported in edit and create mode
2023-02-05 22:37:24 +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
53b64feb7b
Merge pull request #23760 from rept0id/develop
...
Fix : Updated function dol_eval, added error handling
2023-02-04 15:16:38 +01:00
Laurent Destailleur
1f195a3be5
Fix #yogosha14963
2023-02-04 14:04:25 +01:00
Rept0id
fb655a0b0a
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-02 16:50:50 +02:00
Laurent Destailleur
a6f6192d78
Fix warnings
2023-02-01 11:20:52 +01:00
Laurent Destailleur
9fb08b5a0a
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-01-31 21:28:59 +01:00
Laurent Destailleur
36cf05318b
Debug v17
2023-01-31 21:17:06 +01:00
Laurent Destailleur
a6daba61ce
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop
2023-01-26 02:32:08 +01:00
Laurent Destailleur
dbfa172e19
Debug view of thumbs for svg
2023-01-25 17:39:21 +01:00
Laurent Destailleur
faa44379e8
Debug view of thumbs for svg
2023-01-25 17:38:04 +01:00
Laurent Destailleur
5429882147
Debug v17
2023-01-24 18:23:46 +01:00
Laurent Destailleur
5b5a3547e2
Debug v17
2023-01-24 13:00:09 +01:00
Laurent Destailleur
1513c46c77
Doxygen
2023-01-22 19:25:37 +01:00
Laurent Destailleur
f7302232df
Fix rounding
2023-01-20 19:34:26 +01:00
Laurent Destailleur
7668233d0c
NEW Tooltip to explain how to add a photo on product
2023-01-17 10:22:23 +01:00
Laurent Destailleur
bd8a48b6dd
css
2023-01-15 01:45:54 +01:00
Laurent Destailleur
97061a9a92
NEW Use a cache file for external RSS in calendar
2023-01-13 17:17:23 +01:00