From d24786ef4e5443e04222c743f34d447035e7ae49 Mon Sep 17 00:00:00 2001 From: Julian Date: Wed, 31 Aug 2016 11:04:38 +1200 Subject: [PATCH] remove die and comment --- code/tasks/ContentReviewEmails.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/tasks/ContentReviewEmails.php b/code/tasks/ContentReviewEmails.php index 775bdde..7b4bded 100644 --- a/code/tasks/ContentReviewEmails.php +++ b/code/tasks/ContentReviewEmails.php @@ -50,12 +50,11 @@ class ContentReviewEmails extends BuildTask // Send one email to one owner with all the pages in there instead of no of pages of emails. foreach ($overduePages as $memberID => $pages) { - //$this->notifyOwner($memberID, $pages, "due"); + $this->notifyOwner($memberID, $pages, "due"); } // Send an email to the generic address with any first or second reminders $this->notifyTeam($firstReminderPages, $secondReminderPages); - die(); ContentReviewCompatability::done($compatibility); }