Fix cron maintenance email subject for database error log emails. Forgot to flag $sEmailSubject

as global
This commit is contained in:
Chris Morgan
2007-06-16 17:04:56 +00:00
committed by WineHQ
parent bdca7c3bac
commit 1d3050fc96

View File

@@ -254,6 +254,7 @@ function orphanSessionListCheck()
// report the database error log entries to the mailing list // report the database error log entries to the mailing list
function reportErrorLogEntries() function reportErrorLogEntries()
{ {
global $sEmailSubject;
error_log::mail_admins_error_log($sEmailSubject); error_log::mail_admins_error_log($sEmailSubject);
error_log::flush(); error_log::flush();
} }