diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-29 14:10:26 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-29 14:10:26 -0500 |
commit | dbe7d5695dbbb052f8c7cc23269b2ca6b0b768db (patch) | |
tree | 8138ad98f1292ae537ab6358b56bdd5588cde8b9 /lib | |
parent | 4d11733622aeef8467df452391fa1bc5853c2f09 (diff) | |
download | ampache-dbe7d5695dbbb052f8c7cc23269b2ca6b0b768db.tar.gz ampache-dbe7d5695dbbb052f8c7cc23269b2ca6b0b768db.tar.bz2 ampache-dbe7d5695dbbb052f8c7cc23269b2ca6b0b768db.zip |
Rename Ampache_Mail to Mailer
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/mailer.class.php (renamed from lib/class/ampache_mail.class.php) | 6 | ||||
-rw-r--r-- | lib/class/registration.class.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/class/ampache_mail.class.php b/lib/class/mailer.class.php index 278a374f..1e5bffa5 100644 --- a/lib/class/ampache_mail.class.php +++ b/lib/class/mailer.class.php @@ -21,12 +21,12 @@ */ /** - * Ampache_Mail Class + * Mailer Class * * This class handles the Mail * */ -class Ampache_Mail { +class Mailer { // The message, recipient and from public $message; @@ -210,5 +210,5 @@ class Ampache_Mail { return $this->send($mail); } -} // Ampache_Mail class +} // Mailer class ?> diff --git a/lib/class/registration.class.php b/lib/class/registration.class.php index 5df8e563..72a4af5d 100644 --- a/lib/class/registration.class.php +++ b/lib/class/registration.class.php @@ -43,7 +43,7 @@ class Registration { * This sends the confirmation e-mail for the specified user */ public static function send_confirmation($username, $fullname, $email, $password, $validation) { - $mailer = new Ampache_Mail(); + $mailer = new Mailer(); // We are the system $mailer->set_default_sender(); |