diff options
author | xgizzmo <xgizzmo@ampache> | 2008-05-10 21:53:18 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2008-05-10 21:53:18 +0000 |
commit | 003619c52c0370f03b9edb466addaaebac13ce41 (patch) | |
tree | b882ae1a16743b4b2a7d87034353983fc722526b | |
parent | caf9fb06c61c51c5648736eafb378dd9f50bc822 (diff) | |
download | ampache-003619c52c0370f03b9edb466addaaebac13ce41.tar.gz ampache-003619c52c0370f03b9edb466addaaebac13ce41.tar.bz2 ampache-003619c52c0370f03b9edb466addaaebac13ce41.zip |
Fixed 2 typos
-rw-r--r-- | admin/mail.php | 2 | ||||
-rw-r--r-- | lib/class/browse.class.php | 2 |
2 files changed, 2 insertions, 2 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(); diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index dc5ac33e..c0135679 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -868,7 +868,7 @@ class Browse { self::$simple_browse = make_bool($_SESSION['browse']['simple']); self::$static_content = make_bool($_SESSION['browse']['static']); self::$type = $_SESSION['browse']['type']; - self::$start = intval($_SESISON['browse'][self::$type]['start']); + self::$start = intval($_SESSION['browse'][self::$type]['start']); } // _auto_init |