diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-05-29 06:58:14 -0500 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-05-29 06:58:14 -0500 |
commit | 550a14a669ca4271db64856ff7c7ce376fc2cd34 (patch) | |
tree | 09ec13ba6e09906aaded8d97a27205075ac6a879 /pages/massemail.php | |
parent | 4a7b4e549fbbdb81aea8d837685ff83e0391ba86 (diff) | |
download | pathery-550a14a669ca4271db64856ff7c7ce376fc2cd34.tar.xz |
Set up foreign keys within the database. There is a small chance I may have broken emails, unlocks, or chat. Will test :)
Diffstat (limited to 'pages/massemail.php')
-rw-r--r-- | pages/massemail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/massemail.php b/pages/massemail.php index 2d80b17..d009cf9 100644 --- a/pages/massemail.php +++ b/pages/massemail.php @@ -69,7 +69,7 @@ if (isset($_POST['queueMassEmail']) AND $_POST['queueMassEmail'] == 'true') { $tmpTitle = replaceByArray($tmpTitle, $replacements);
echo "$tmpBody <br />";
//This Sanitizes data - so no worries!
- QueueEmail(0, $tmpEmail, $tmpTitle, $tmpBody, 100, true);
+ QueueEmail(null, $tmpEmail, $tmpTitle, $tmpBody, 100);
}
echo "Complete!...<br/>";
|