diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-04-15 13:26:57 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-04-15 13:26:57 +0200 |
commit | f41c79d730286e8e8c95deb88a4c876e08e278a2 (patch) | |
tree | 01f0bfed39bd9f67472fdbf595004914c9966f79 | |
parent | 2398a2b54196667d6659d3d0489212b271c43703 (diff) | |
download | rpg-f41c79d730286e8e8c95deb88a4c876e08e278a2.tar.gz rpg-f41c79d730286e8e8c95deb88a4c876e08e278a2.tar.bz2 |
changed internal Mailer members from private to protected
-rw-r--r-- | inc/Mailer.class.php | 18 |
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 |