1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Newsletter LAN fix

This commit is contained in:
Cameron
2015-05-11 14:07:38 -07:00
parent 76d7a802c6
commit e4516a4ea7

View File

@@ -39,8 +39,8 @@ class newsletter_mailout
protected $mailCount = 0; protected $mailCount = 0;
protected $mailRead = 0; protected $mailRead = 0;
//public $mailerSource = 'newsletter'; // Plugin name (core mailer is special case) Must be directory for this file //public $mailerSource = 'newsletter'; // Plugin name (core mailer is special case) Must be directory for this file
public $mailerName = NLLAN_48; // Text to identify the source of selector (displayed on left of admin page) public $mailerName =LAN_PLUGIN_NEWSLETTER_NAME; // Text to identify the source of selector (displayed on left of admin page)
public $mailerEnabled = TRUE; // Mandatory - set to FALSE to disable this plugin (e.g. due to permissions restrictions) public $mailerEnabled = TRUE; // Mandatory - set to FALSE to disable this plugin (e.g. due to permissions restrictions)
private $selectorActive = FALSE; // Set TRUE if we've got a valid selector to start returning entries private $selectorActive = FALSE; // Set TRUE if we've got a valid selector to start returning entries
private $targets = array(); // Used to store potential recipients private $targets = array(); // Used to store potential recipients
private $ourDB; private $ourDB;
@@ -224,8 +224,8 @@ class newsletter_mailout
return $var; return $var;
} }
else else
{ {
return false; // Return Nothing to avoid confusion. return false; // Return Nothing to avoid confusion.
} }
} }