diff --git a/include/class.email.php b/include/class.email.php
index 40cabccd288211639cb1255748dcaad81112dd7b..2e3d62c59303b1031fc141366065a9c051f3d6cf 100644
--- a/include/class.email.php
+++ b/include/class.email.php
@@ -253,7 +253,7 @@ class Email {
         if(!$vars['email'] || !Validator::is_email($vars['email'])) {
             $errors['email']=__('Valid email required');
         }elseif(($eid=Email::getIdByEmail($vars['email'])) && $eid!=$id) {
-            $errors['email']=__('Email already exits');
+            $errors['email']=__('Email already exists');
         }elseif($cfg && !strcasecmp($cfg->getAdminEmail(), $vars['email'])) {
             $errors['email']=__('Email already used as admin email!');
         }elseif(Staff::getIdByEmail($vars['email'])) { //make sure the email doesn't belong to any of the staff
diff --git a/scp/tickets.php b/scp/tickets.php
index 2170ec28fbc59bdac16f523a87d981172bba1fab..3664b6a1fa718807fe7789486a432ce1c46bd9d6 100644
--- a/scp/tickets.php
+++ b/scp/tickets.php
@@ -324,7 +324,7 @@ if($_POST && !$errors):
                         $msg=sprintf(__('Ticket flagged as unanswered by %s'),$thisstaff->getName());
                         $ticket->logActivity(__('Ticket Marked Unanswered'),$msg);
                     } else {
-                        $errors['err']=__('Problems marking the the ticket unanswered. Try again');
+                        $errors['err']=__('Problems marking the ticket unanswered. Try again');
                     }
                     break;
                 case 'banemail':