From c8470911407389e5b4ab5619a7495c2107b87680 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Tue, 28 Feb 2023 09:31:10 +0100 Subject: [PATCH] Fix minore --- mail.php | 2 +- modules/emails/src/Account.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mail.php b/mail.php index 5e5a34d59..ff73c28fb 100755 --- a/mail.php +++ b/mail.php @@ -178,7 +178,7 @@ echo ' 'label' => tr('Contenuto'), 'name' => 'body', 'id' => 'body_'.rand(0, 999), - 'value' => json_encode($body), + 'value' => $body, ]); echo' diff --git a/modules/emails/src/Account.php b/modules/emails/src/Account.php index d64b64dea..1805062fc 100755 --- a/modules/emails/src/Account.php +++ b/modules/emails/src/Account.php @@ -38,12 +38,12 @@ class Account extends Model 'microsoft' => [ 'name' => 'Microsoft', 'class' => Microsoft::class, - 'help' => 'https://docs.openstamanager.com/v/2.4.40/configurazioni/configurazione-oauth2#microsoft', + 'help' => 'https://docs.openstamanager.com/v/2.4.41/configurazioni/configurazione-oauth2#microsoft', ], 'google' => [ 'name' => 'Google', 'class' => Google::class, - 'help' => 'https://docs.openstamanager.com/v/2.4.40/configurazioni/configurazione-oauth2#google', + 'help' => 'https://docs.openstamanager.com/v/2.4.41/configurazioni/configurazione-oauth2#google', ], ];