Change: add lang attribute to the main template, to the language files and to the processing scripts

This commit is contained in:
Heiko August 2020-04-27 08:37:48 +02:00
parent a6daece140
commit ca31135c36
8 changed files with 13 additions and 5 deletions

View file

@ -29,9 +29,10 @@
}
require_once('.'.DIRECTORY_SEPARATOR.'scripts'.DIRECTORY_SEPARATOR.'prepend.inc.php');
$c['meta']['robots'] = "noindex, follow";
$c['meta']['description'] = htmlspecialchars(strip_tags(str_replace("\n", '', JLOG_DESCRIPTION)), ENT_QUOTES);
$c['meta']['title'] = $l['index_topic'];
$c['meta']['robots'] = "noindex, follow";
$c['meta']['description'] = htmlspecialchars(strip_tags(str_replace("\n", '', JLOG_DESCRIPTION)), ENT_QUOTES);
$c['meta']['title'] = $l['index_topic'];
$c['meta']['html_language'] = $l['html_language'];
$c['main'] = "";
$cc = array();