diff --git a/admin/template/template.php b/admin/template/template.php index 6ca893fc..640a5dfc 100644 --- a/admin/template/template.php +++ b/admin/template/template.php @@ -3,7 +3,7 @@ - <?php echo (isset($title) ? $title . $config['title_separator'] : '') . $config['lua']['serverName'];?> + <?php echo (isset($title) ? $title . ' - ' : '') . $config['lua']['serverName'];?> diff --git a/config.php b/config.php index f36a4723..c00cbe16 100644 --- a/config.php +++ b/config.php @@ -52,7 +52,6 @@ $config = array( // head options (html) 'meta_description' => 'Tibia is a free massive multiplayer online role playing game (MMORPG).', // description of the site 'meta_keywords' => 'free online game, free multiplayer game, ots, open tibia server', // keywords list separated by commas - 'title_separator' => ' - ', // footer 'footer' => ''/*'
Your Server © 2016. All rights reserved.'*/, diff --git a/index.php b/index.php index 32e8599c..c2361fd1 100644 --- a/index.php +++ b/index.php @@ -357,7 +357,7 @@ if($config['backward_support']) { $topic = $title; } -$title_full = (isset($title) ? $title . $config['title_separator'] : '') . $config['lua']['serverName']; +$title_full = (isset($title) ? $title . ' - ' : '') . $config['lua']['serverName']; require $template_path . '/' . $template_index; echo base64_decode('PCEtLSBQb3dlcmVkIGJ5IE15QUFDIDo6IGh0dHBzOi8vd3d3Lm15LWFhYy5vcmcvIC0tPg==') . PHP_EOL;