From 237e0077a3de89a33253342bdfa80ca0afe117c6 Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Wed, 25 Mar 2015 12:53:57 -0500
Subject: [PATCH] oops: Fix lint-found mishaps

---
 include/class.ticket.php   | 2 +-
 setup/test/tests/stubs.php | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/class.ticket.php b/include/class.ticket.php
index edb5e49fc..e4f5a8b77 100644
--- a/include/class.ticket.php
+++ b/include/class.ticket.php
@@ -1109,7 +1109,7 @@ class Ticket {
             // Skip the person who sent in the message
             $skip[$entry->getUserId()] = 1;
             // Skip all the other recipients of the message
-            foreach ($entry->getEmailAllRecipients() as $R) {
+            foreach ($entry->getAllEmailRecipients() as $R) {
                 foreach ($recipients as $R2) {
                     if ($R2->getEmail() == ($R->mailbox.'@'.$R->hostname)) {
                         $skip[$R2->getUserId()] = true;
diff --git a/setup/test/tests/stubs.php b/setup/test/tests/stubs.php
index 5e3904e62..399943b6b 100644
--- a/setup/test/tests/stubs.php
+++ b/setup/test/tests/stubs.php
@@ -122,4 +122,8 @@ class IntlBreakIterator {
 class SqlFunction {
     static function NOW() {}
 }
+
+class Aws_Route53_Client {
+    function changeResourceRecordSets() {}
+}
 ?>
-- 
GitLab