summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarian-Kechlibar <marian.kechlibar@circletech.net>2016-07-13 20:48:20 +0200
committerGitHub <noreply@github.com>2016-07-13 20:48:20 +0200
commit035d98f988c605735d3282ba989e3d29f0d274a4 (patch)
tree90e4cebca52a3fc954f1d54ff9e0202f4f5fb29f
parent13f0998b20ab9a3650ed833d6696d94feaabd1c2 (diff)
downloadPHPAuth-035d98f988c605735d3282ba989e3d29f0d274a4.zip
PHPAuth-035d98f988c605735d3282ba989e3d29f0d274a4.tar.gz
PHPAuth-035d98f988c605735d3282ba989e3d29f0d274a4.tar.bz2
Small syntax error fixed
-rw-r--r--Auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth.php b/Auth.php
index 69611a6..d20a707 100644
--- a/Auth.php
+++ b/Auth.php
@@ -791,7 +791,7 @@ class Auth
if ($sendmail === true) {
// Check configuration for SMTP parameters
$mail = new PHPMailer;
- $mail->CharSet = $this->$config->mail_charset;
+ $mail->CharSet = $this->config->mail_charset;
if ($this->config->smtp) {
$mail->isSMTP();
$mail->Host = $this->config->smtp_host;