diff --git a/admin.php b/admin.php index 0f52987..f35f865 100644 --- a/admin.php +++ b/admin.php @@ -772,7 +772,7 @@ entries = [] for dirpath, dirnames, filenames in os.walk(root): dirnames[:] = [d for d in dirnames if d != '.movmaker-lock'] for name in filenames: - if name in {'.movmaker-state.json', '.movmaker-enabled', '.movmaker-preview', '.mvlog-hidden', '.mvlog-permalink', '.mvlog-id', '.mvlog-hide-map'}: + if name in {'.movmaker-state.json', '.movmaker-enabled', '.movmaker-preview', '.mvlog-hidden', '.mvlog-permalink', '.mvlog-id', '.mvlog-hide-map', '.mvlog-describe-prompt.txt', '.mvlog-last-openrouter-response.json', '.mvlog-last-openrouter-text.txt'}: continue path = os.path.join(dirpath, name) rel = os.path.relpath(path, root) diff --git a/contact.php.example b/contact.php.example index 64bd46b..b425629 100644 --- a/contact.php.example +++ b/contact.php.example @@ -27,7 +27,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { } elseif (!filter_var($form_email, FILTER_VALIDATE_EMAIL)) { $err = "Please provide a valid email address."; } else { - $subject = "MVLog Contact Form Submission from " . $form_name; + $subject = "MVLog Contact Submission from " . $form_name; $body = "Name: " . $form_name . "\n"; $body .= "Email: " . $form_email . "\n\n"; $body .= "Message:\n" . str_replace(["\r\n", "\r"], "\n", $form_message); diff --git a/index.php b/index.php index 1ebebe9..d518f34 100644 --- a/index.php +++ b/index.php @@ -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; } } } diff --git a/manifest.json b/manifest.json index 751574a..da380f0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "name": "MVLog: journal of an unreliable narrator.", + "name": "journal of an unreliable narrator.", "short_name": "MVLog", "description": "Motorcycle road stories, hockey passion, pizza nerdism and facts remembered by an unreliable narrator.", "id": "/",