Guenter Lukas
2e7371eee6
Fix #23795
2023-02-06 08:45:44 +01:00
Laurent Destailleur
3132fed13e
Merge pull request #23784 from glu000/16.0
...
Fix #23783 Box "Last changed vendors" is shown on comm/index.php even if user has no permission
2023-02-06 00:18:48 +01:00
Laurent Destailleur
e04a44e4ce
Merge pull request #23786 from glu000/16.0-issue-23785
...
Fix #23785 Box "Last changed vendors": External users can see all suppliers on htdocs/comm/index.php
2023-02-06 00:18:21 +01:00
Laurent Destailleur
60c750885f
Merge pull request #23789 from glu000/16.0-issue-23787
...
Fix #23787 External user can see users from other companies in agenda view per user
2023-02-06 00:05:16 +01:00
Laurent Destailleur
b52203b4e0
Update peruser.php
2023-02-06 00:05:06 +01:00
Laurent Destailleur
a0f8a2454b
Update peruser.php
2023-02-06 00:04:19 +01:00
Laurent Destailleur
a55305568a
Merge pull request #23791 from grandoc/new_branch_05_02_2023
...
fix : Warning: Trying to access array offset on value of type bool in…
2023-02-06 00:03:13 +01:00
Laurent Destailleur
48026b038e
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
2023-02-05 20:18:15 +01:00
Laurent Destailleur
090c04b904
Fix filter on contact category
2023-02-05 20:16:58 +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
Philippe GRAND
7a1c9b468a
fix : Warning: Undefined array key label in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/expedition/card.php on line 340
2023-02-05 17:04:13 +01:00
Philippe GRAND
d903008786
fix : Warning: Undefined variable in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/commande/card.php on line 688
2023-02-05 15:14:23 +01:00
Philippe GRAND
6c61b80778
fix : Warning: Trying to access array offset on value of type bool in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/includes/tcpdi/tcpdi_parser.php on line 1376
2023-02-05 14:57:36 +01:00
stickler-ci
d2a6d89fca
Fixing style errors.
2023-02-05 10:48:29 +00:00
Guenter Lukas
edb81d1955
update
2023-02-05 11:43:09 +01:00
Guenter Lukas
31984b8f2e
update
2023-02-05 09:33:54 +01:00
Günter Lukas
f5600fdffc
Update index.php
2023-02-05 08:38:46 +01:00
Günter Lukas
d8ff9468af
Update index.php
2023-02-05 08:35:45 +01:00
Günter Lukas
17397d635c
#23783
2023-02-05 08:24:09 +01:00
Laurent Destailleur
2690dd6274
Merge pull request #23730 from altairis-benjamin/commandcard
...
FIX Get data back when error on command create
2023-02-04 17:06:32 +01:00
Frédéric FRANCE
c69e5a98b1
Add files via upload
2023-02-04 16:34:10 +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
Laurent Destailleur
100b572aa3
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
2023-02-04 16:11:28 +01:00
Laurent Destailleur
ff4ea81429
Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
2023-02-04 16:11:16 +01:00
Laurent Destailleur
87d2f6be2e
Merge pull request #23749 from altairis-melina/product_card
...
FIX : Get data back on product update
2023-02-04 16:08:58 +01:00
Laurent Destailleur
30ed312913
FIX Try to fix stripe warning
2023-02-04 16:01:00 +01:00
Laurent Destailleur
116cf440de
Fix stripe warning
2023-02-04 15:52:25 +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
2560a543b1
Merge pull request #23767 from Easya-Solutions/14.0_fix-ticket-join-file
...
FIX attach file and send by mail in ticket
2023-02-04 15:24:33 +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
4a5e474ab9
Merge pull request #23774 from noec764/16_0_Fix_Cgeneric
...
FIX: Cannot import find type_fees with cgenericdic.class because it has id and not rowid
2023-02-04 15:07:13 +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
7a3c752914
Fix permission on an inherited group inside entity 0 no visible
2023-02-04 14:06:40 +01:00
Laurent Destailleur
e782930670
Fix #yogosha
2023-02-04 14:06:06 +01:00
Philippe GRAND
5271a2b4a7
fix : Warning: Undefined property: DeliveryLine:: in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/delivery/card.php on line 571 and same for
2023-02-04 12:17:42 +01:00
Philippe GRAND
9016f5e74a
fix : Warning: Undefined variable in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/delivery/card.php on line 286
2023-02-04 11:42:01 +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
Philippe GRAND
75b5c2cf54
fix : Warning: Undefined property: stdClass:: in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/delivery/class/delivery.class.php on line 822
2023-02-04 10:25:35 +01:00
Laurent Destailleur
601ca8ad7a
Fix changelog
2023-02-03 18:22:36 +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
Laurent Destailleur
d0d30d1f17
Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
2023-02-03 17:11:30 +01:00