summaryrefslogtreecommitdiff
path: root/inc/Mailer.class.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-04-15 13:26:57 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-04-15 13:26:57 +0200
commitf41c79d730286e8e8c95deb88a4c876e08e278a2 (patch)
tree01f0bfed39bd9f67472fdbf595004914c9966f79 /inc/Mailer.class.php
parent2398a2b54196667d6659d3d0489212b271c43703 (diff)
downloadrpg-f41c79d730286e8e8c95deb88a4c876e08e278a2.tar.gz
rpg-f41c79d730286e8e8c95deb88a4c876e08e278a2.tar.bz2
changed internal Mailer members from private to protected
Diffstat (limited to 'inc/Mailer.class.php')
-rw-r--r--inc/Mailer.class.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/inc/Mailer.class.php b/inc/Mailer.class.php
index f04cdd3e2..507150d00 100644
--- a/inc/Mailer.class.php
+++ b/inc/Mailer.class.php
@@ -16,17 +16,17 @@ if(!defined('MAILHEADER_EOL')) define('MAILHEADER_EOL',"\n");
class Mailer {
- private $headers = array();
- private $attach = array();
- private $html = '';
- private $text = '';
+ protected $headers = array();
+ protected $attach = array();
+ protected $html = '';
+ protected $text = '';
- private $boundary = '';
- private $partid = '';
- private $sendparam= null;
+ protected $boundary = '';
+ protected $partid = '';
+ protected $sendparam= null;
- private $validator = null;
- private $allowhtml = true;
+ protected $validator = null;
+ protected $allowhtml = true;
/**
* Constructor