Fix ignored show_in_notification_page parameter in notification()

pull/5918/head
Hypolite Petovan 2018-10-14 11:30:39 -04:00
rodzic 0563a28438
commit f2bde919e5
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -84,7 +84,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 = isset($params['show_in_notification_page']) ? $params['show_in_notification_page'] : true;
$additional_mail_header = "";
$additional_mail_header .= "Precedence: list\n";