Merge pull request #601 from tobiasd/20180513-4976

notifyall: enclose senders name in quotation marks
This commit is contained in:
Hypolite Petovan 2018-05-14 16:08:36 -04:00 committed by GitHub
commit a2203e3d09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 13 deletions

View File

@ -11,42 +11,51 @@
use Friendica\Content\Text\BBCode;
use Friendica\Core\L10n;
use Friendica\Util\Emailer;
use Friendica\App;
function notifyall_install() {
function notifyall_install()
{
logger("installed notifyall");
}
function notifyall_uninstall() {
function notifyall_uninstall()
{
logger("removed notifyall");
}
function notifyall_module() {}
function notifyall_addon_admin(&$a, &$o) {
function notifyall_addon_admin(App $a, &$o)
{
$o = '<div></div>&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . z_root() . '/notifyall">' . L10n::t('Send email to all members') . '</a></br/>';
}
function notifyall_post(&$a) {
if(! is_site_admin())
function notifyall_post(App $a)
{
if(!is_site_admin()) {
return;
}
$text = trim($_REQUEST['text']);
if(! $text)
if(! $text) {
return;
}
$sitename = $a->config['sitename'];
if (!x($a->config['admin_name']))
$sender_name = L10n::t('%s Administrator', $sitename);
else
$sender_name = L10n::t('%1$s, %2$s Administrator', $a->config['admin_name'], $sitename);
if (empty($a->config['admin_name'])) {
$sender_name = '"' . L10n::t('%s Administrator', $sitename) . '"';
} else {
$sender_name = '"' . L10n::t('%1$s, %2$s Administrator', $a->config['admin_name'], $sitename) . '"';
}
if (! x($a->config['sender_email']))
if (! x($a->config['sender_email'])) {
$sender_email = 'noreply@' . $a->get_hostname();
else
} else {
$sender_email = $a->config['sender_email'];
}
$subject = $_REQUEST['subject'];