mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 08:55:54 +00:00
Merge branch 'seeddms-4.1.4' into develop
This commit is contained in:
commit
0c89264f79
|
@ -67,7 +67,7 @@ class SeedDMS_Email extends SeedDMS_Notify {
|
|||
return true;
|
||||
} /* }}} */
|
||||
|
||||
function toList($sender, $recipients, $subject, $message, $params) { /* {{{ */
|
||||
function toList($sender, $recipients, $subject, $message, $params=array()) { /* {{{ */
|
||||
if ((!is_object($sender) && strcasecmp(get_class($sender), "SeedDMS_Core_User")) ||
|
||||
(!is_array($recipients) && count($recipients)==0)) {
|
||||
return -1;
|
||||
|
|
|
@ -31,9 +31,9 @@ abstract class SeedDMS_Notify {
|
|||
*/
|
||||
protected $sender;
|
||||
|
||||
abstract function toIndividual($sender, $recipient, $subject, $message, $params);
|
||||
abstract function toGroup($sender, $groupRecipient, $subject, $message, $params);
|
||||
abstract function toList($sender, $recipients, $subject, $message, $params);
|
||||
abstract function toIndividual($sender, $recipient, $subject, $message, $params=array());
|
||||
abstract function toGroup($sender, $groupRecipient, $subject, $message, $params=array());
|
||||
abstract function toList($sender, $recipients, $subject, $message, $params=array());
|
||||
|
||||
function replaceMarker($text) {
|
||||
global $settings;
|
||||
|
|
Loading…
Reference in New Issue
Block a user