diff --git a/apps/maarch_entreprise/class/class_contacts_v2_Abstract.php b/apps/maarch_entreprise/class/class_contacts_v2_Abstract.php
index e93081415528e712e75470eccbc4f0229083e535..871201b55cda25a1022cb6c7cee6527d26f92015 100755
--- a/apps/maarch_entreprise/class/class_contacts_v2_Abstract.php
+++ b/apps/maarch_entreprise/class/class_contacts_v2_Abstract.php
@@ -167,7 +167,7 @@ abstract class contacts_v2_Abstract extends Database
                 $path_contacts_confirm = $_SESSION['config']['businessappurl'].'index.php?page=contacts_v2_confirm';
             }
             header(
-                'location: '.$path_contacts_confirm.'&mode='.$mode.'&mycontact='.$mycontact
+                'location: '.$path_contacts_confirm.'&body_loaded&mode='.$mode.'&mycontact='.$mycontact
             );
             exit;
         }
diff --git a/modules/visa/class/IParapheurController.php b/modules/visa/class/IParapheurController.php
index d496ea7ba8ce876b1aca3caa60dd1154f328187d..7acb32cac096a096be1ff32f4f5e17375f805f92 100755
--- a/modules/visa/class/IParapheurController.php
+++ b/modules/visa/class/IParapheurController.php
@@ -193,12 +193,6 @@ class IParapheurController
 
         $curlReturn = $curlReturn = self::returnCurl($xmlPostString, $aArgs['config']);
 
-        if (!$curlReturn['response']) {
-            // TODO gestin d'une erreur
-            echo $curlReturn['error'];
-            return false;
-        }
-
         $response = $curlReturn['response']->children('http://schemas.xmlsoap.org/soap/envelope/')->Body->children('http://www.adullact.org/spring-ws/iparapheur/1.0')->GetDossierResponse[0];
         if ($response->MessageRetour->codeRetour == $aArgs['config']['data']['errorCode']) {
             // TODO gestion d'une potentielle erreur
diff --git a/src/app/notification/models/NotificationScheduleModelAbstract.php b/src/app/notification/models/NotificationScheduleModelAbstract.php
index 7f90bded0ad5b25714bfed670417d6ba6b907bc3..1f1a74328a93eefa1b425cdcd93adb6de439f20c 100755
--- a/src/app/notification/models/NotificationScheduleModelAbstract.php
+++ b/src/app/notification/models/NotificationScheduleModelAbstract.php
@@ -83,10 +83,10 @@ abstract class NotificationScheduleModelAbstract
         ];
         foreach ($lines as $cronLine) {
             $cronLine = preg_replace('![ \t]+!', ' ', trim($cronLine));
-            if ($aArgs['setHiddenValue'] && (strpos($cronLine, '#') !== false || strpos($cronLine, 'MAILTO=') !== false)) {
+            if ($aArgs['setHiddenValue'] && ($cronLine[0] == '#' || ctype_alpha($cronLine[0]))) {
                 $data[] = $emptyLine;
                 continue;
-            } elseif (!$aArgs['setHiddenValue'] && (strpos($cronLine, '#') === 0 || strpos($cronLine, 'MAILTO=') === 0)) {
+            } elseif (!$aArgs['setHiddenValue'] && ($cronLine[0] == '#' || ctype_alpha($cronLine[0]))) {
                 $data[] = [ 'm' => $cronLine];
                 continue;
             }