MVLog removed

This commit is contained in:
hbrain 2026-06-20 16:13:40 +02:00
parent 7b5db39b37
commit 040a22855e
4 changed files with 6 additions and 6 deletions

View file

@ -402,7 +402,7 @@ $activeFilterCount = ($keywordValue !== '') ? 1 : 0;
$baseParams = ($rawKeyword !== '') ? ['q' => $rawKeyword] : [];
$defaultOgImageUrl = 'https://bubulescu.org/assets/img/bubulescuorg.jpg';
$ogImageUrl = $defaultOgImageUrl;
$ogImageAlt = 'MVLog: journal of an unreliable narrator.';
$ogImageAlt = 'journal of an unreliable narrator.';
$ogType = ($articleId !== '') ? 'article' : 'website';
$ogUrl = ($articleId !== '') ? ('https://bubulescu.org/?id=' . rawurlencode($articleId)) : 'https://bubulescu.org/';
$pageTitle = 'MVLog';
@ -416,8 +416,8 @@ if ($articleId !== '') {
$firstMeta = $videoCache[$firstVideo]['metadata'] ?? video_metadata($slice[0]);
$firstTitle = trim((string)($firstMeta['title'] ?? ''));
if ($firstTitle !== '') {
$ogImageAlt = 'MVLog: ' . $firstTitle;
$pageTitle = 'MVLog: ' . $firstTitle;
$ogImageAlt = $firstTitle;
$pageTitle = $firstTitle;
}
}
}