[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 01/01: sendmail : public -> protected
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 01/01: sendmail : public -> protected |
Date: |
Sun, 15 Sep 2019 13:03:32 -0400 (EDT) |
sparkyx pushed a commit to branch master
in repository noalyss.
commit 7bfbfc464cf509b1ac39db322310723fdaa0acd6
Author: Dany De Bontridder <address@hidden>
Date: Sun Sep 15 19:03:06 2019 +0200
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 4687930..11a5180 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()
{