Skip to content

Commit

Permalink
Merge branch '2024.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Nov 21, 2024
2 parents d8cc3e3 + 6270d96 commit f9e1afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tine20/Tinebase/Scheduler/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ protected function _sendNotification($callable, $infoData)

try {
$taskName = $this->_name ?? $callable[self::CONTROLLER] . '::' . $callable[self::METHOD_NAME];
$emails = explode(',', $this->_emails);
$emails = is_array($this->_emails) ? $this->_emails : explode(',', $this->_emails);

if (Tinebase_Core::isLogLevel(Zend_Log::DEBUG)) {
Tinebase_Core::getLogger()->debug(__METHOD__ . '::' . __LINE__
Expand Down

0 comments on commit f9e1afb

Please sign in to comment.