Actions
Bug #3503
closedE-Mail Reports syslog error: "rrdcolors.inc.php for theme does not exist" (and proposed fix)
Start date:
03/05/2014
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
Affected Architecture:
Description
I've been using the "E-Mail Reports" package, with good success, except that it fills my syslog with error messages: "rrdcolors.inc.php for theme does not exist".
I took a quick look today, and found that /etc/inc/mail_reports.inc references a non-existent global variable, g$['theme'].
I fixed this by creating /etc/inc/globals_override.inc, containing the following:
<?php global $g; $g['theme'] = 'pfsense'; ?>
I suppose the "correct" fix would be to add a line to /etc/inc/globals.inc.
Actions