From ae800ab396923fefb8e69f0701a5709575cc153d Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Tue, 15 Mar 2022 12:38:32 +0000 Subject: [PATCH] wait #4882 @0.75 --- inc/commons/class.common.url.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/commons/class.common.url.php b/inc/commons/class.common.url.php index e9cb52885..986c7fd9a 100644 --- a/inc/commons/class.common.url.php +++ b/inc/commons/class.common.url.php @@ -661,7 +661,7 @@ class commonUrl $body = 'Tous les fichiers de ' . $core->user->prenom . ' ' . $core->user->nom . ' : https://' . $_SERVER['HTTP_HOST'] . '/fichiers/' . $core->user->utilisateur_id . "\n\n"; $body .= 'Fichiers chargés : ' . "\n"; foreach ($files_uploaded as $f) { - $body .= ' - https://' . $_SERVER['HTTP_HOST'] . '/telecharger/' . $f . "\n"; + $body .= ' - https://' . $_SERVER['HTTP_HOST'] . '/telecharger/' . commonUrl::hashFile($f) . '/' . $f . "\n"; } } else { $dao = new commonDAOClient($core->con); @@ -678,7 +678,7 @@ class commonUrl $body .= "\n" . RAPPEL . " : \n"; $body .= ' - Adresse : https://' . $_SERVER['HTTP_HOST'] . '/' . "\n"; $body .= ' - Login : ' . $client->email . "\n"; - $body .= ' - Mot de passe : ' . $client->password . "\n"; + $body .= ' - Mot de passe : ' . __('Utiliser la fonction "Mot de passe oublié" pour le créer ou le réinitialiser') . "\n"; } $mail->body = $body; $ok = $mail->send(); -- 2.39.5