From 7bfbfc464cf509b1ac39db322310723fdaa0acd6 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sun, 15 Sep 2019 19:03:06 +0200 Subject: [PATCH] sendmail : public -> protected --- include/lib/sendmail_core.class.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/lib/sendmail_core.class.php b/include/lib/sendmail_core.class.php index 46879307e..11a5180af 100644 --- a/include/lib/sendmail_core.class.php +++ b/include/lib/sendmail_core.class.php @@ -33,13 +33,13 @@ require_once NOALYSS_INCLUDE.'/lib/filetosend.class.php'; class Sendmail_Core { - public $mailto; - public $afile; - public $subject; - public $message; - public $from; - public $content; - public $header; + protected $mailto; + protected $afile; + protected $subject; + protected $message; + protected $from; + protected $content; + protected $header; function __construct() {