mirror of https://github.com/mikaku/Monitorix.git
added a default value and updated Changes #90
This commit is contained in:
parent
ad621a1a7c
commit
aa9db251c2
1
Changes
1
Changes
|
@ -8,6 +8,7 @@
|
|||
the text color.
|
||||
- Changed to a clickable link the bottom URL in the PHP APC graph, and fixed
|
||||
the text color.
|
||||
- Added custom url config option 'logo_top_url' for the top logo link. [#90]
|
||||
- Fixed the text color in the bottom URL of the Bind graph.
|
||||
- Fixed the text color in the bottom URL of the Icecast Streaming Server graph.
|
||||
- Fixed a problem with multiple 'ApplicationInstance' tags in Wowza Server
|
||||
|
|
|
@ -597,6 +597,10 @@ if(!scalar($config{func_update})) {
|
|||
}
|
||||
|
||||
logger("Generating the 'index.html' file.");
|
||||
if(!defined($config{logo_top_url})) {
|
||||
logger("WARNING: the 'logo_top_url' option doesn't exist. Please consider upgrading your configuration file.");
|
||||
$config{logo_top_url} = "http://www.monitorix.org/";
|
||||
}
|
||||
create_index();
|
||||
|
||||
# start the HTTP built-in (if enabled)
|
||||
|
|
Loading…
Reference in New Issue