summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2008-05-10 21:53:18 +0000
committerxgizzmo <xgizzmo@ampache>2008-05-10 21:53:18 +0000
commit003619c52c0370f03b9edb466addaaebac13ce41 (patch)
treeb882ae1a16743b4b2a7d87034353983fc722526b /admin
parentcaf9fb06c61c51c5648736eafb378dd9f50bc822 (diff)
downloadampache-003619c52c0370f03b9edb466addaaebac13ce41.tar.gz
ampache-003619c52c0370f03b9edb466addaaebac13ce41.tar.bz2
ampache-003619c52c0370f03b9edb466addaaebac13ce41.zip
Fixed 2 typos
Diffstat (limited to 'admin')
-rw-r--r--admin/mail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/mail.php b/admin/mail.php
index 4c5a070e..ed656003 100644
--- a/admin/mail.php
+++ b/admin/mail.php
@@ -47,7 +47,7 @@ switch ($_REQUEST['action']) {
// Set the vars on the object
AmpacheMail::$recipient = $recipient;
- AmpacheMail::$from = $GLBOALS['user']->fullname."<".$GLOBALS['user']->email.">";
+ AmpacheMail::$from = $GLOBALS['user']->fullname."<".$GLOBALS['user']->email.">";
AmpacheMail::$subject = scrub_in($_REQUEST['subject']);
AmpacheMail::$message = scrub_in($_REQUEST['message']);
AmpacheMail::send();