Fix Issue #2813 - Double notification + wrong message for requested registrations
This commit is contained in:
rabuzarus 2016-10-02 05:14:05 +02:00 committed by GitHub
commit 8fa64c43d6
3 changed files with 9 additions and 10 deletions

View file

@ -49,7 +49,7 @@ function notification($params) {
// with $params['show_in_notification_page'] == false, the notification isn't inserted into
// the database, and an email is sent if applicable.
// default, if not specified: true
$show_in_notification_page = ((x($params, 'show_in_notification_page')) ? $params['show_in_notification_page']:True);
$show_in_notification_page = ((x($params, 'show_in_notification_page')) ? $params['show_in_notification_page']:true);
$additional_mail_header = "";
$additional_mail_header .= "Precedence: list\n";