header bugfix

This commit is contained in:
Frank Agerholm 2019-01-16 19:51:42 +01:00
commit 28d30c6499
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ $redis_options["host"] = get_cfg_from_env("REDIS_OPTIONS_HOST","localhost");
$redis_options["port"] = get_cfg_from_env("REDIS_OPTIONS_PORT",6379);
$redis_options["password"] = get_cfg_from_env("REDIS_OPTIONS_PASSWORD","password");
$redis_title = get_cfg_from_env("REDIS_TITLE","");
$retwis_title = get_cfg_from_env("RETWIS_TITLE","");
// read configuration from file if exists ...
if( is_file("./.htconfig.php") ) {

View file

@ -9,6 +9,6 @@
<div id="page">
<div id="header">
<a href="/"><img style="border:none" src="logo.png" width="192" height="85" alt="Retwis"></a>
<?php echo $redis_title; ?>
<?php echo $retwis_title; ?>
<?php include("navbar.php") ?>
</div>