Finished composer, Fixed lang logic error, Removed rash, Some minor fixes left

Update composer.php, content.php, and 5 more files...
This commit is contained in:
2022-06-27 13:13:16 +02:00
parent 9313ceff83
commit bce4897c00
7 changed files with 423 additions and 882 deletions

View File

@@ -71,13 +71,7 @@ if($content_has_error) {
} elseif($requested_content_display_type == ContentDisplayType::SEARCH) {
echo(localize("content.title.content").'<span class="mx-10">❱</span>'.localize("content.title.search.header"));
} elseif($requested_content_display_type == ContentDisplayType::CONTENT) {
$_nav_title_text = '<i>' . localize("error.content.data.no.title") . '</i>';
//if (array_key_exists("page", $requested_item_data["title"])) {
// $_nav_title_text = getContentItemText($requested_item_data["title"]["page"]);
//}
echo(localize("content.title.content").'<span class="mx-10">❱</span></span>'.$_nav_title_text);
echo(localize("content.title.content").'<span class="mx-10">❱</span>'.$content->get_head_title());
}
?>
</h2>