We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bb2bf1 commit 5d8782fCopy full SHA for 5d8782f
EditorialPlugin.php
@@ -367,7 +367,6 @@ protected function sendEmails($block)
367
if (empty($options['email_recipients'])) {
368
return;
369
}
370
-debug("sendEmails on block id: " . $block->id );
371
$db = $this->_db;
372
$userTable = $db->getTable('User');
373
$userSelect = $userTable->getSelect();
views/shared/exhibit_layouts/editorial-block/form.php
@@ -189,10 +189,8 @@
189
190
if (isset($options['allowed_users'])) {
191
foreach ($usersForSelect as $userId => $name) {
192
- debug($userId);
193
if (in_array($userId, $options['allowed_users'])) {
194
if ($userId == $currentUser->id) {
195
196
$recipientsArray[$userId] = $name. ' ' . __('(You)');
197
} else {
198
$recipientsArray[$userId] = $name;
0 commit comments