Skip to content

Commit 5d8782f

Browse files
committed
remove stray debugging messages
1 parent 7bb2bf1 commit 5d8782f

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

EditorialPlugin.php

-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,6 @@ protected function sendEmails($block)
367367
if (empty($options['email_recipients'])) {
368368
return;
369369
}
370-
debug("sendEmails on block id: " . $block->id );
371370
$db = $this->_db;
372371
$userTable = $db->getTable('User');
373372
$userSelect = $userTable->getSelect();

views/shared/exhibit_layouts/editorial-block/form.php

-2
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,8 @@
189189

190190
if (isset($options['allowed_users'])) {
191191
foreach ($usersForSelect as $userId => $name) {
192-
debug($userId);
193192
if (in_array($userId, $options['allowed_users'])) {
194193
if ($userId == $currentUser->id) {
195-
debug($userId);
196194
$recipientsArray[$userId] = $name. ' ' . __('(You)');
197195
} else {
198196
$recipientsArray[$userId] = $name;

0 commit comments

Comments
 (0)