Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
- Correction compatibilité PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kkhelifa-opendsi committed Jul 10, 2024
1 parent 927f14b commit 6bd3491
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ChangeLog

## [14.0.6] - 10-07-2024
- Correction compatibilité PHP 8.2

## [14.0.5] - 25-06-2024
- Debloque la possibilité de mettre a jour les produit de dolibarr vers WooCommerce même si la synchro descandant des categories et produits n'as pas été effectué

Expand Down Expand Up @@ -910,7 +913,8 @@
- Initial version.


[Non Distribué]: https://github.com/OPEN-DSI/ecommerceng_woosync/compare/14.0.5...HEAD
[Non Distribué]: https://github.com/OPEN-DSI/ecommerceng_woosync/compare/14.0.6...HEAD
[14.0.6]: https://github.com/OPEN-DSI/ecommerceng_woosync/commits/14.0.6
[14.0.5]: https://github.com/OPEN-DSI/ecommerceng_woosync/commits/14.0.5
[14.0.4]: https://github.com/OPEN-DSI/ecommerceng_woosync/commits/14.0.4
[14.0.3]: https://github.com/OPEN-DSI/ecommerceng_woosync/commits/14.0.3
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.0.5
14.0.6
2 changes: 1 addition & 1 deletion admin/order.php
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@
print '<tr><td>' . "\n";
if ($lang != 'ec_none') print $lang . " : ";
// Zone to select email template
if (count($email_templates[$lang == 'ec_none' ? '' : $lang]) > 0) {
if (isset($email_templates[$lang == 'ec_none' ? '' : $lang]) && count($email_templates[$lang == 'ec_none' ? '' : $lang]) > 0) {
print $form->selectarray('mail_model_for_send_invoice_' . $lang . '_' . $key, $email_templates[$lang == 'ec_none' ? '' : $lang], $infos['mail_model_for_send_invoice'][$lang], 1, 0, 0, '', 0, 0, 0, '', ' minwidth200');
} else {
print '<select name="mail_model_for_send_invoice_' . $lang . '_' . $key . '" disabled="disabled"><option value="none">' . $langs->trans("NoTemplateDefined") . '</option></select>'; // Do not put 'disabled' on 'option' tag, it is already on 'select' and it makes chrome crazy.
Expand Down

0 comments on commit 6bd3491

Please sign in to comment.